This commit is contained in:
Andrea Bianchi
2026-03-28 11:13:57 +09:00
commit a9b2b8b4bf
14 changed files with 1289 additions and 0 deletions

15
vite.config.js Normal file
View File

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