fix: remove duplicate vite config

This commit is contained in:
2025-06-04 11:04:41 +09:00
parent 32c53a8f70
commit e912ef0735

View File

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