-
Notifications
You must be signed in to change notification settings - Fork 0
/
vite.config.ts
78 lines (73 loc) · 1.64 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
import { resolve } from 'path';
import { defineConfig } from 'vite';
import vue from '@vitejs/plugin-vue';
import vueDevTools from 'vite-plugin-vue-devtools';
// https://vitejs.dev/config/
// @ts-ignore
export default defineConfig(({ mode }) => {
const isDev = mode === 'development';
// const isProd = mode === 'production';
const server = {
port: '3030',
cors: { origin: '*' },
};
const define = { 'process.env': {} };
const plugins = [
vue(),
vueDevTools(),
];
let optimizeDeps = {};
if (isDev) {
optimizeDeps = {
include: [
'vue',
'vue-router',
'pinia',
'lodash',
'dayjs',
],
};
}
return {
server,
css: {
preprocessorOptions: {
scss: {
api: 'modern-compiler',
},
},
},
build: {
// reference: https://rollupjs.org/configuration-options/
rollupOptions: {
input: {
main: resolve(__dirname, './index.html'),
videoChat: resolve(__dirname, './video-chat.html'),
},
output: [
{
name: 'main',
dir: 'app',
},
{
name: 'videoChat',
dir: 'app',
},
],
},
},
define,
plugins,
optimizeDeps,
resolve: {
alias: {
'vue': 'vue/dist/vue.esm-bundler.js',
'@main': resolve(__dirname, './src-main'),
'@video': resolve(__dirname, './src-video'),
'@shared': resolve(__dirname, './shared-libs'),
'@bg': resolve(__dirname, './src-background-instance'),
'~': resolve(__dirname, './types'),
},
},
};
});