-
Notifications
You must be signed in to change notification settings - Fork 271
/
vite.config.ts
239 lines (233 loc) · 8.9 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
import path from 'path';
import vue from '@vitejs/plugin-vue';
import { BilldHtmlWebpackPlugin, logData } from 'billd-html-webpack-plugin';
import externalGlobals from 'rollup-plugin-external-globals';
import autoImport from 'unplugin-auto-import/vite';
import { NaiveUiResolver } from 'unplugin-vue-components/resolvers';
import unpluginVueComponents from 'unplugin-vue-components/vite';
import { defineConfig } from 'vite';
import prefetchPlugin from 'vite-plugin-bundle-prefetch';
import checker from 'vite-plugin-checker';
import { chunkSplitPlugin } from 'vite-plugin-chunk-split';
import eslint from 'vite-plugin-eslint2';
import { createHtmlPlugin } from 'vite-plugin-html';
import pkg from './package.json';
const globals: any = externalGlobals({
// 'runtime-core': 'runtime-core',
// vue: 'Vue',
// 'vue-demi': 'VueDemi',
// 'vue-router': 'VueRouter',
'video.js': 'videojs',
'mpegts.js': 'mpegts',
// fabric: 'fabric',
'cos-js-sdk-v5': 'COS',
});
// https://vitejs.dev/config/
export default defineConfig(({ mode }) => {
const isProduction = mode === 'production';
const outputStaticUrl = () => {
if (isProduction) {
return 'https://live.hsslive.cn/dist/';
} else {
return './';
}
// return './';
};
return {
base: outputStaticUrl(),
css: {
preprocessorOptions: {
scss: {
additionalData: `@use 'billd-scss/src/index.scss' as *;@import '@/assets/constant.scss';`,
},
},
},
resolve: {
alias: {
'@': path.resolve(__dirname, 'src'),
// 'runtime-core':
// 'https://tencentcos-res.hsslive.cn/npm/@vue/[email protected]/+esm.js',
// vue: 'https://tencentcos-res.hsslive.cn/npm/[email protected]/+esm.js',
// 'vue-router': 'https://tencentcos-res.hsslive.cn/npm/[email protected]/+esm.js',
// 'video.js': 'https://tencentcos-res.hsslive.cn/npm/[email protected]/+esm.js',
// 'mpegts.js': 'https://tencentcos-res.hsslive.cn/npm/[email protected]/+esm.js',
// fabric: 'https://tencentcos-res.hsslive.cn/npm/[email protected]/+esm.js',
// 'cos-js-sdk-v5':
// 'https://tencentcos-res.hsslive.cn/npm/[email protected]/+esm.js',
},
/**
* 不建议省略.vue后缀
* https://cn.vitejs.dev/config/shared-options.html#resolve-extensions
*/
// extensions: ['.js', '.ts', '.jsx', '.tsx', '.vue'],
},
build: {
outDir: 'dist',
rollupOptions: {
external: [
// 'vue',
// 'vue-demi',
// 'vue-router',
// 'runtime-core',
'video.js',
'mpegts.js',
// 'fabric',
'cos-js-sdk-v5',
],
plugins: [globals],
},
},
plugins: [
// visualizer({
// gzipSize: true,
// brotliSize: true,
// emitFile: false,
// filename: 'visualizer.html', // 分析图生成的文件名
// open: true, // 如果存在本地服务端口,将在打包后自动展示
// }),
chunkSplitPlugin({
// 指定拆包策略
// customSplitting: {
// // `vue` and `vue-router` 会被打包到一个名为`vue-vendor`的 chunk 里面(包括它们的一些依赖,如 object-assign)
// 'vue-vendor': [/vue/],
// 'vue-router-vendor': [/vue-router/],
// 'av-cliper-vendor': [/@webav\/av-cliper/],
// // 源码中 utils 目录的代码都会打包进 `utils` 这个 chunk 中
// // utils: [/src\/utils/],
// views: [/src\/views/],
// compoents: [/src\/compoents/],
// },
}),
prefetchPlugin(),
// isProduction && legacy(),
vue(),
createHtmlPlugin({
inject: {
data: {
// @ts-ignore
title: 'billd直播',
// injectScript: `<script src="${outputStaticUrl()}worker.js"></script>`,
},
tags: isProduction
? [
{
injectTo: 'head',
tag: 'script',
attrs: {
src: 'https://tencentcos-res.hsslive.cn/npm/[email protected]/video.min.js',
},
},
{
injectTo: 'head',
tag: 'script',
attrs: {
src: 'https://tencentcos-res.hsslive.cn/npm/[email protected]/mpegts.min.js',
},
},
{
injectTo: 'head',
tag: 'script',
attrs: {
src: 'https://tencentcos-res.hsslive.cn/npm/[email protected]/cos-js-sdk-v5.min.js',
},
},
// {
// injectTo: 'head',
// tag: 'script',
// attrs: {
// src: 'https://tencentcos-res.hsslive.cn/npm/[email protected]/vue.global.min.js',
// },
// },
// {
// injectTo: 'head',
// tag: 'script',
// attrs: {
// src: 'https://tencentcos-res.hsslive.cn/npm/[email protected]/index.iife.min.js',
// },
// },
// {
// injectTo: 'head',
// tag: 'script',
// attrs: {
// src: 'https://tencentcos-res.hsslive.cn/npm/[email protected]/vue-router.global.min.js',
// },
// },
]
: [],
},
}),
checker({
// typescript: true,
vueTsc: true,
// eslint: {
// lintCommand: 'eslint "./src/**/*.{ts,tsx}"', // for example, lint .ts & .tsx
// },
}),
eslint({}),
autoImport({
imports: [
{
'naive-ui': ['useMessage', 'useNotification'],
},
],
}),
unpluginVueComponents({
// eslint-disable-next-line
resolvers: [NaiveUiResolver()],
}),
new BilldHtmlWebpackPlugin({ env: 'vite4' }).config,
],
define: {
'process.env': {
BilldHtmlWebpackPlugin: logData(null),
NODE_ENV: JSON.stringify(isProduction ? 'production' : 'development'),
PUBLIC_PATH: outputStaticUrl(),
VUE_APP_RELEASE_PROJECT_NAME: JSON.stringify(
process.env.VUE_APP_RELEASE_PROJECT_NAME
),
VUE_APP_RELEASE_PROJECT_ENV: JSON.stringify(
process.env.VUE_APP_RELEASE_PROJECT_ENV
),
VUE_APP_RELEASE_PROJECT_VERSION: JSON.stringify(pkg.version),
},
},
server: {
host: '0.0.0.0',
proxy: {
'/api': {
target: 'http://localhost:4300',
secure: false, // 默认情况下(secure: true),不接受在HTTPS上运行的带有无效证书的后端服务器。设置secure: false后,后端服务器的HTTPS有无效证书也可运行
/**
* changeOrigin,是否修改请求地址的源
* 默认changeOrigin: false,即发请求即使用devServer的localhost:port发起的,如果后端服务器有校验源,就会有问题
* 设置changeOrigin: true,就会修改发起请求的源,将原本的localhost:port修改为target,这样就可以通过后端服务器对源的校验
*/
changeOrigin: true,
rewrite: (path) => path.replace(/^\/api/, '/'),
},
'/betaapi': {
target: 'http://localhost:4300',
secure: false, // 默认情况下(secure: true),不接受在HTTPS上运行的带有无效证书的后端服务器。设置secure: false后,后端服务器的HTTPS有无效证书也可运行
/**
* changeOrigin,是否修改请求地址的源
* 默认changeOrigin: false,即发请求即使用devServer的localhost:port发起的,如果后端服务器有校验源,就会有问题
* 设置changeOrigin: true,就会修改发起请求的源,将原本的localhost:port修改为target,这样就可以通过后端服务器对源的校验
*/
changeOrigin: true,
rewrite: (path) => path.replace(/^\/betaapi/, '/'),
},
'/prodapi': {
target: 'http://localhost:4200',
secure: false, // 默认情况下(secure: true),不接受在HTTPS上运行的带有无效证书的后端服务器。设置secure: false后,后端服务器的HTTPS有无效证书也可运行
/**
* changeOrigin,是否修改请求地址的源
* 默认changeOrigin: false,即发请求即使用devServer的localhost:port发起的,如果后端服务器有校验源,就会有问题
* 设置changeOrigin: true,就会修改发起请求的源,将原本的localhost:port修改为target,这样就可以通过后端服务器对源的校验
*/
changeOrigin: true,
rewrite: (path) => path.replace(/^\/prodapi/, '/'),
},
},
},
};
});