mirror of
https://github.com/wasp-lang/wasp.git
synced 2024-12-21 08:01:49 +03:00
17 lines
301 B
TypeScript
Generated
17 lines
301 B
TypeScript
Generated
import { defineConfig } from 'vite'
|
|
import react from '@vitejs/plugin-react-swc'
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
plugins: [react()],
|
|
server: {
|
|
port: 3000,
|
|
host: '0.0.0.0',
|
|
open: true,
|
|
},
|
|
envPrefix: 'REACT_APP_',
|
|
build: {
|
|
outDir: 'build',
|
|
},
|
|
})
|