This commit is contained in:
Andrea Bianchi
2026-05-20 09:38:26 +09:00
parent 827de7467d
commit 70649dff69
7 changed files with 15318 additions and 1 deletions

View File

@@ -0,0 +1,13 @@
// vite.config.js
const { resolve } = require('path');
const { defineConfig } = require('vite');
module.exports = defineConfig({
build: {
rollupOptions: {
input: {
main: resolve(__dirname, 'index.html'),
},
},
},
});