init: création d'un template vide vite+vue3

This commit is contained in:
2026-03-09 23:40:11 +01:00
commit cf2ce6ba2f
10 changed files with 1441 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
// https://vite.dev/config/
export default defineConfig({
plugins: [vue()],
server: {
host: '0.0.0.0',
port: 8080,
},
})