增加 编译模式下 代码混淆 功能

This commit is contained in:
hawk86104 2024-06-15 11:22:55 +08:00
parent ad6f24c388
commit 46fefcc744
2 changed files with 29 additions and 3 deletions

27
.fes.js
View File

@ -4,7 +4,7 @@
* @Autor: 地虎降天龙
* @Date: 2023-10-16 10:53:09
* @LastEditors: 地虎降天龙
* @LastEditTime: 2024-05-31 11:45:58
* @LastEditTime: 2024-06-15 11:17:09
*/
// import { resolve } from 'path';
import { join } from 'path'
@ -14,6 +14,7 @@ import { templateCompilerOptions } from '@tresjs/core'
import UnoCSS from 'unocss/vite'
// eslint-disable-next-line import/no-extraneous-dependencies
import glsl from 'vite-plugin-glsl'
import obfuscatorPlugin from 'vite-plugin-javascript-obfuscator'
const timeStamp = new Date().getTime()
const combinedIsCustomElement = (tag) => {
@ -53,15 +54,39 @@ export default defineBuildConfig({
/* options */
}),
glsl(),
process.env.NODE_ENV === 'production' &&
obfuscatorPlugin({
debugger: false,
// include: ['src/plugins/'],
// exclude: ['/node_modules/', '/src/.fes/', '/src/app.jsx', /index.jsx$/],
// apply: 'build',
options: {
// 配置项,根据需要进行调整
optionsPreset: 'default',
// identifierNamesGenerator: 'mangled',
debugProtection: true,
disableConsoleOutput: true,
reservedStrings: ['suspenseLayout.vue', '/plugins'],
// ... [See more options](https://github.com/javascript-obfuscator/javascript-obfuscator)
},
}),
],
build: {
chunkSizeWarningLimit: 1000, // 单位为KB
rollupOptions: {
output: {
manualChunks(id) {
// 自定义拆分策略,例如将特定的第三方库拆分为单独的 chunk
if (id.includes('node_modules')) {
return id.toString().split('node_modules/')[1].split('/')[0]
}
},
chunkFileNames: `js/[name].[hash]${timeStamp}.js`,
entryFileNames: `js/[name].[hash]${timeStamp}.js`,
assetFileNames: `[ext]/[name].[hash]${timeStamp}.[ext]`,
},
},
minify: process.env.NODE_ENV === 'production' ? 'terser' : false,
},
// 全局 css 注册
css: {

View File

@ -6,7 +6,7 @@
"dev": "fes dev",
"build": "fes build",
"pre.dev": "cross-env FES_ENV=predev fes dev",
"pre.build": "cross-env FES_ENV=predev fes build",
"pre.build": "cross-env NODE_OPTIONS=--max-old-space-size=8088 FES_ENV=predev fes build",
"plugin.marker": "node pluginMaker/index.js",
"analyze": "cross-env ANALYZE=1 fes build",
"test:unit": "fes test:unit",
@ -86,9 +86,10 @@
"tilebelt-wgs84": "^1.0.4",
"tweakpane": "4.0.3",
"unocss": "0.58.9",
"vite-plugin-javascript-obfuscator": "^3.1.0",
"vue": "3.4.21",
"vue-echarts": "^6.7.2",
"vue3-lazyload": "^0.3.8"
},
"private": true
}
}