init repository with p5js and babylon

This commit is contained in:
pobadoba
2026-05-05 18:17:28 +09:00
commit 66f5f35a9e
13 changed files with 1682 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')
}
}
}
})