-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathvite.config.js
38 lines (36 loc) · 919 Bytes
/
vite.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
import { defineConfig } from 'vite';
import tailwindcss from 'tailwindcss';
import react from '@vitejs/plugin-react';
import { nodePolyfills } from 'vite-plugin-node-polyfills';
export default defineConfig({
plugins: [
react(),
nodePolyfills({
globals: true, // Enable polyfilling for `global`
}),
],
build: {
outDir: 'dist',
},
css: {
postcss: {
plugins: [tailwindcss()],
},
},
server: {
port: 3000, //runs frontend on 3000
open: true, //will automatically open up the page
proxy: {
//can be deleted
// '/login': 'http://localhost:3000',
// '/signup': 'http://localhost:3000',
// '/protected': 'http://localhost:3000',
'/random': 'http://localhost:81',
'/data': 'http://localhost:81',
},
historyApiFallback: true, //ensures client-side routing works
},
// preview: {
// allowedHosts: true,
// },
});