-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvite.config.ts
More file actions
40 lines (38 loc) · 1.12 KB
/
vite.config.ts
File metadata and controls
40 lines (38 loc) · 1.12 KB
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
39
40
import vue from "@vitejs/plugin-vue"
import vueJsx from "@vitejs/plugin-vue-jsx"
import * as dotenv from "dotenv"
import { rename } from "fs/promises"
import { join } from "path"
import { defineConfig } from "vite"
// https://vitejs.dev/config/
export default defineConfig(() => {
dotenv.config({ path: join(__dirname, ".env.local") })
dotenv.config({ path: join(__dirname, ".env") })
return {
appType: "mpa",
plugins: [vue(), vueJsx()],
resolve: {
preserveSymlinks: true
},
server: {
port: +(process.env.PORT ?? 8080),
proxy: {
"^/api": {
target: "http://localhost:8081/",
changeOrigin: true,
ws: true,
}
}
},
build: {
rollupOptions: {
input: "src/main.ts",
output: {
entryFileNames: `assets/quick-front.js`,
chunkFileNames: `assets/[name].js`,
assetFileNames: `assets/[name].[ext]`
},
},
}
}
})