add oauth

This commit is contained in:
2026-01-18 14:26:43 +09:00
parent a563359566
commit 59516b7fa2
50 changed files with 5132 additions and 330 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,
},
})