This commit is contained in:
2026-01-08 18:26:27 +09:00
parent 68ac88045b
commit d3f08e6db5
16 changed files with 1465 additions and 1 deletions

10
pds/vite.config.js Normal file
View File

@@ -0,0 +1,10 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
export default defineConfig({
plugins: [react()],
base: '/pds/',
define: {
'process.env.NODE_ENV': JSON.stringify('production')
}
})