-
Notifications
You must be signed in to change notification settings - Fork 0
/
vite.config.ts
38 lines (36 loc) · 940 Bytes
/
vite.config.ts
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 react from '@vitejs/plugin-react'
import svgr from "vite-plugin-svgr";
// import basicSsl from '@vitejs/plugin-basic-ssl';
// import { createServer } from 'https';
// https://vitejs.dev/config/
export default defineConfig({
plugins: [react(), /*basicSsl(),*/ svgr({
svgrOptions: {
icon: true,
},
})],
css: {
preprocessorOptions: {
scss: {
api: "modern-compiler",
}
}
},
server: {
// https: createServer(),
// proxy: {
// // "/apis": {
// // target: "http://4.209.35.224:8081/apis",
// // changeOrigin: true,
// // rewrite: (path) => path.replace(/^\/apis/, ''),
// // },
// "/events": {
// target: "http://172.205.109.116:8083/events",
// changeOrigin: true,
// secure: false,
// rewrite: (path) => path.replace(/^\/events/, ''),
// }
// }
}
})