#7 ぼちぼち

This commit is contained in:
2025-05-18 05:57:48 +09:00
parent 3b172e44d8
commit 2d6986d421
38 changed files with 2408 additions and 15068 deletions
+14
View File
@@ -0,0 +1,14 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
// https://vite.dev/config/
export default defineConfig({
plugins: [react()],
server: { host: true,
port: 5173,
strictPort: true,
allowedHosts: ['hub.nizika.monster', 'localhost'],
proxy: { '/api': { target: 'http://localhost:3002',
changeOrigin: true,
secure: false } } }
})