feat: migrate from next.js to vite

This commit is contained in:
2025-06-04 11:04:14 +09:00
parent b5770b4301
commit 203024869f

12
frontend/vite.config.ts Normal file
View File

@ -0,0 +1,12 @@
import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';
export default defineConfig({
plugins: [react()],
server: {
port: 3000,
},
build: {
outDir: 'dist',
},
});