mirror of
https://github.com/wasp-lang/wasp.git
synced 2024-12-21 16:11:50 +03:00
15 lines
264 B
TypeScript
15 lines
264 B
TypeScript
|
import { defineConfig } from 'vite'
|
||
|
import react from '@vitejs/plugin-react-swc'
|
||
|
|
||
|
// https://vitejs.dev/config/
|
||
|
export default defineConfig({
|
||
|
plugins: [react()],
|
||
|
server: {
|
||
|
port: 3000,
|
||
|
},
|
||
|
envPrefix: 'REACT_APP_',
|
||
|
build: {
|
||
|
outDir: 'build',
|
||
|
},
|
||
|
})
|