Creation de la base du glitcher

This commit is contained in:
2026-04-20 19:00:08 +02:00
parent c10ce7e8d7
commit f1229866d1
9 changed files with 368 additions and 2 deletions
+10 -2
View File
@@ -6,13 +6,21 @@ import svgLoader from 'vite-svg-loader'
// https://vite.dev/config/
export default defineConfig({
plugins: [vue(), svgLoader()],
server:{
server: {
host: '0.0.0.0',
port:8080
port: 8080
},
resolve: {
alias: {
'@': path.resolve(__dirname, './src')
}
},
build: {
rollupOptions: {
input: {
main: path.resolve(import.meta.dirname, 'index.html'),
glitcher: path.resolve(import.meta.dirname, 'glitcher/index.html'),
},
},
}
})