-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvite.config.js
163 lines (161 loc) · 4.89 KB
/
vite.config.js
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
import legacy from '@vitejs/plugin-legacy'
import { fileURLToPath } from 'url'
import { defineConfig, loadEnv } from 'vite'
import vue from '@vitejs/plugin-vue'
import vueJsx from '@vitejs/plugin-vue-jsx'
import { compression } from 'vite-plugin-compression2'
import { updateVersion } from "vite-plugin-update-version";
import obfuscatorPlugin from "vite-plugin-javascript-obfuscator";
import { ViteImageOptimizer } from 'vite-plugin-image-optimizer';
import path from 'path';
const __filenameNew = fileURLToPath(import.meta.url)
const __dirnameNew = path.dirname(__filenameNew)
const resolve = (dir) => path.resolve(__dirnameNew, dir);
// https://vitejs.dev/config/
export default defineConfig(({ command, mode }) => {
// 根据当前工作目录中的 `mode` 加载 .env 文件
// 设置第三个参数为 '' 来加载所有环境变量,而不管是否有 `VITE_` 前缀。
const env = loadEnv(mode, process.cwd(), '')
// console.log(command)
// console.log(env)
// console.log(env.CURRENT_ENV)
// console.log(env.APP_ENV)
// console.log(env.VUE_APP_BASE_API)
return {
base: `${env.APP_BASE_API ? '/' + env.APP_BASE_API : ''}/`, // 部署在GitHub Pages需要加上base,詳見:https://cn.vitejs.dev/guide/static-deploy.html#github-pages
// vite环境变量配置
define: {
CURRENT_ENV: JSON.stringify(env.CURRENT_ENV),
APP_BASE_API: JSON.stringify(env.APP_BASE_API),
},
optimizeDeps: {
force: true,
},
server: {
open: true,
// 每次启动的时候都强制进行预构建
// force: true,
// proxy: {
// [`/${env.APP_BASE_API}/api`]: {
// target: 'https://test.com',
// changeOrigin: true,
// rewrite: (path) => path.replace(/^\/api/, ''),
// // secure: false, // 如果是https接口,需要配置这个参数
// },
// '/weixinRobot': {
// target: 'https://test.com', changeOrigin: true, secure: false, // 如果是https接口,需要配置这个参数
// }
// },
},
resolve: {
alias: {
// 'vue-i18n': 'vue-i18n/dist/vue-i18n.cjs.js',
'vue': 'vue/dist/vue.esm-bundler.js',
'@': resolve('src'),//路径化名
},
extensions: ['.mjs', '.js', '.ts', '.jsx', '.tsx', '.json', '.vue'],
},
plugins: [
/**
* @description: 更新package.json的版本信息, apply: 'build'打包时才调用
* @return {*}
*/
{
...updateVersion(__dirnameNew),
apply: 'build',
},
/**
* @description: 图片压缩插件
* @return {*}
*/
{
...ViteImageOptimizer({
/* pass your config */
}),
// enforce: 'pre',
apply: 'build',
},
/**
* @description: 生成gzip文件,使网页加载更快
* @return {*}
*/
{
...compression(
// {
// deleteOriginalAssets: true,
// exclude: ["./public/**"]
// }
),
// enforce: 'post',
apply: 'build',
},
/**
* @description: 兼容旧版本浏览器
* @return {*}
*/
{
...legacy({
targets: ['defaults'],
}),
apply: 'build',
},
/**
* @description: 代码压缩加密
* @return {*}
*/
env.CURRENT_ENV !== 'dev' ? obfuscatorPlugin({
include: [// "src/path/to/file.js", "path/anyjs/**/*.js", /foo.js$/
"src/assets/**",
"src/api/**",
"src/indexDB/**",
"src/language/**",
"src/utils/**",
// "src/views/**",
// "src/styles/**",
],
// exclude: [/node_modules/, "src/indexDB/**"],
// apply: "build",
// debugger: true,
options: {
// your javascript-obfuscator options
debugProtection: env.CURRENT_ENV === 'prod' ? true : false,
renameGlobals: true,
transformObjectKeys: true
// ... [See more options](https://github.com/javascript-obfuscator/javascript-obfuscator)
},
}) : {},
vue(),
vueJsx(),
],
css: {
preprocessorOptions: {
less: {
// 支持内联 JavaScript
javascriptEnabled: true,
},
},
},
/**
* @description: 打包时才调用
* @return {*}
*/
build: {
// minify: 'terser',
//打包环境移除console.log,debugger
// terserOptions: {
// compress: {
// drop_console: true,
// drop_debugger: true,
// },
// },
//打包文件按照类型分文件夹显示(貌似会导致性能下降)
// rollupOptions: {
// output: {
// chunkFileNames: 'js/[name]-chunk-[hash:7].js',
// entryFileNames: 'js/[name]-app-[hash:7].js',
// assetFileNames: '[ext]/[name]-chunk-[hash:7].[ext]',
// },
// },
},
}
})