feat: add vite config file

This commit is contained in:
2025-06-04 11:04:25 +09:00
parent 203024869f
commit 32c53a8f70

View File

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