This commit is contained in:
2026-01-18 17:28:14 +09:00
commit b98605d688
54 changed files with 6512 additions and 0 deletions

20
vite.config.ts Normal file
View File

@@ -0,0 +1,20 @@
import { defineConfig } from 'vite'
import { resolve } from 'path'
export default defineConfig({
root: 'src/web',
publicDir: '../../public',
build: {
outDir: '../../dist',
emptyOutDir: true,
},
resolve: {
alias: {
'@': resolve(__dirname, 'src/web'),
},
},
server: {
host: '0.0.0.0',
port: 5173,
},
})