-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvite.config.ts
44 lines (43 loc) · 1.03 KB
/
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
39
40
41
42
43
44
import { fileURLToPath, URL } from 'node:url';
import { defineConfig } from 'vite';
import { viteStaticCopy } from 'vite-plugin-static-copy'
import { env } from 'process';
import vue from '@vitejs/plugin-vue';
import fs from 'fs';
export default defineConfig({
plugins: [
vue(),
viteStaticCopy({
targets: [{
src: ['cert.pem', 'key.pem'],
dest: '.'
}]
})
],
css: {
preprocessorOptions: {
less: {
additionalData: "@import url('./src/assets/global');"
}
}
},
resolve: {
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url))
}
},
server: {
port: 443,
host: true,
https: {
key: fs.readFileSync('./key.pem'),
cert: fs.readFileSync('./cert.pem'),
},
proxy: {
'^(^/api)|(^/files)|(^/private/.+)': {
target: env.ASPNETCORE_HTTPS_PORT ? `https://localhost:${env.ASPNETCORE_HTTPS_PORT}` : env.ASPNETCORE_URLS ? env.ASPNETCORE_URLS.split(';')[0] : 'https://localhost:5001',
secure: false
}
}
}
})