-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvite.config.ts
72 lines (72 loc) · 2.58 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
import { defineConfig } from 'vite';
import uni from '@dcloudio/vite-plugin-uni';
const path = require('path');
/**
* vite 配置文件
* 备注: 公共配置 commonConfig 中的配置项大部分是默认配置项,此处列出来是为了方便开发时随时调整
*/
// https://vitejs.dev/config/
export default defineConfig(({ command, mode }) => {
// 公共配置
const commonConfig = {
plugins: [uni()],
server: {
host: '127.0.0.1',
port: 3000,
strictPort: false, // 设为 true 时若端口已被占用则会直接退出,而不是尝试下一个可用端口。
// https: false, // 启用 TLS + HTTP/2
open: true, // 在开发服务器启动时自动在浏览器中打开应用程序
// 本地开发自定义组件 请求第三方数据接口需要(解决跨域问题)
// cors: true, // 为开发服务器配置 CORS, 默认启用并允许任何源
},
};
if (command === 'serve') {
// dev 独有配置
return {
...commonConfig,
};
} else {
// command === 'build'
if (process.env.UNI_BUILD_MODE === 'h5') {
return {
mode: 'development', // 'development'(开发模式),'production'(生产模式)
...commonConfig,
build: {
// https://vitejs.dev/config/build-options.html#build-minify
minify: true,
emptyOutDir: false, // 备注:该配置项无效
rollupOptions: {
// https://rollupjs.org/guide/en/#big-list-of-options
external: ['react', 'vue'], // 在构建中排除的依赖项
output: {
// 在 UMD 构建模式下为这些外部化的依赖提供一个全局变量
// dir: 'web',
dir: `web/${process.env.UNI_BUILD_LIB}`, // 输出构建后文件的目录
globals: {
vue: 'vue',
react: 'react',
},
// format: 'amd',
},
},
lib: {
entry: path.resolve(
__dirname,
`./build/${process.env.UNI_BUILD_LIB || 'registerRenderer'}.ts`,
), // 构建自定组件入口文件
formats: ['umd'],
name: process.env.UNI_BUILD_LIB || 'registerRenderer', // 自定义组件名字
fileName: (format) =>
`${process.env.UNI_BUILD_LIB || 'registerRenderer'}.${format}.js`,
style: 'renderer',
},
cssCodeSplit: false, // https://vitejs.cn/config/#build-csscodesplit
},
};
} else {
return {
...commonConfig,
};
}
}
});