This commit is contained in:
2026-01-08 17:30:51 +09:00
parent e577754298
commit 14b7ccd391
275 changed files with 1661 additions and 34144 deletions

11
browser/vite.config.ts Normal file
View File

@@ -0,0 +1,11 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
export default defineConfig({
plugins: [react()],
base: '/at/',
build: {
outDir: 'dist',
emptyOutDir: true,
},
})