diff --git a/vite.config.ts b/vite.config.ts index 5a33944..b3e07e4 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -1,7 +1,10 @@ -import { defineConfig } from 'vite' -import react from '@vitejs/plugin-react' +import { defineConfig } from 'vite'; +import react from '@vitejs/plugin-react'; // https://vitejs.dev/config/ export default defineConfig({ + server: { + port: 3000, + }, plugins: [react()], -}) +});