const { defineConfig } = require("@vue/cli-service"); const CompressionPlugin = require("compression-webpack-plugin"); const WebpackObfuscator = require("webpack-obfuscator"); const path = require("path"); const { NODE_ENV, VUE_APP_TITLE = "" } = process.env; const assetsCDN = { // 忽略打包的第三方库 externals: { // 'vue': 'Vue', // 'vue-router': 'VueRouter', // "crypto-js": "CryptoJS", // 'pako': 'pako', html2canvas: "html2canvas", // 'view-ui-plus':'ViewUIPlus', }, // 通过cdn方式使用 js: [ // 'https://cdn.jsdelivr.net/npm/vue@3.4.31/dist/vue.global.min.js', // 'https://cdn.jsdelivr.net/npm/vue-router@4.4.0/dist/vue-router.global.min.js', // 'https://cdn.jsdelivr.net/npm/crypto-js@4.2.0/crypto-js.min.js', // 'https://cdn.jsdelivr.net/npm/pako@2.1.0/dist/pako.min.js', // 'https://cdn.jsdelivr.net/npm/view-ui-plus@1.3.18/dist/viewuiplus.min.js', "https://cdn.jsdelivr.net/npm/html2canvas@1.4.1/dist/html2canvas.min.js", ], css: [ "https://cdn.jsdelivr.net/npm/view-ui-plus@1.3.18/dist/styles/viewuiplus.min.css", ], }; const config = { assetsDir: "static", productionSourceMap: NODE_ENV !== "production", configureWebpack: (config) => { config.devtool = 'source-map' config.experiments = { asyncWebAssembly: true, syncWebAssembly: true }; config.externals = assetsCDN.externals; // 为生产环境修改配置 if (process.env.NODE_ENV === "production") { config.devtool = false config.plugins.push( new WebpackObfuscator( { compact: true, //压缩代码 controlFlowFlattening: false, //是否启用控制流扁平化(降低1.5倍的运行速度) deadCodeInjection: true, //随机的死代码块(增加了混淆代码的大小) debugProtection: true, //此选项几乎不可能使用开发者工具的控制台选项卡 disableConsoleOutput: true, //通过用空函数替换它们来禁用console.log,console.info,console.error和console.warn。这使得调试器的使用更加困难。 identifierNamesGenerator: "mangled", //标识符的混淆方式 hexadecimal(十六进制) mangled(短标识符) log: false, renameGlobals: true, //是否启用全局变量和函数名称的混淆 rotateStringArray: true, //通过固定和随机(在代码混淆时生成)的位置移动数组。这使得将删除的字符串的顺序与其原始位置相匹配变得更加困难。如果原始源代码不小,建议使用此选项,因为辅助函数可以引起注意。 selfDefending: true, //混淆后的代码,不能使用代码美化,同时需要配置 cpmpat:true; // transformObjectKeys: true, unicodeEscapeSequence: true, //允许启用/禁用字符串转换为unicode转义序列。Unicode转义序列大大增加了代码大小,并且可以轻松地将字符串恢复为原始视图。建议仅对小型源代码启用此选项。 }, ["static/js/chunk-vendors.*.js"] ), new CompressionPlugin({ algorithm: "gzip", // 使用gzip压缩 test: /\.js$|\.html$|\.png$|\.jpg$|\.svg$|\.css$/, // 匹配文件名 filename: "[path][base].gz[query]", // 压缩后的文件名(保持原文件名,后缀加.gz) minRatio: 1, // 压缩率小于1才会压缩 threshold: 5120, // 对超过10k的数据压缩 deleteOriginalAssets: false, // 是否删除未压缩的源文件,谨慎设置,如果希望提供非gzip的资源,可不设置或者设置为false(比如删除打包后的gz后还可以加载到原始资源文件) }) ); } }, transpileDependencies: false, chainWebpack: (setting) => { setting.plugin("html").tap((args) => { args[0].cdn = assetsCDN; args[0].title = VUE_APP_TITLE; return args; }); }, css: { loaderOptions: { less: { lessOptions: { javascriptEnabled: true, }, }, }, }, devServer: { proxy: { "/redirect": { //target: "https://flagnote.com/", // 后台接口域名 target: "http://localhost:21000/", // 后台接口域名 secure: false, // 如果是https接口,需要配置这个参数 changeOrigin: true, //是否跨域 pathRewrite: { "^/": "/html/", }, }, "/note": { target: "https://flagnote.com/", // 后台接口域名 //target: "http://localhost:21000/", // 后台接口域名 secure: false, // 如果是https接口,需要配置这个参数 changeOrigin: true, //是否跨域 pathRewrite: { // '^/': '/' }, }, "^/[abcdefhikmnopqstuvwxyz23456789]{16}\\.txt$": { //target: "https://flagnote.com/", // 后台接口域名 target: "http://localhost:21000/", // 后台接口域名 secure: false, // 如果是https接口,需要配置这个参数 changeOrigin: true, //是否跨域 pathRewrite: { "^/": "/note/", }, }, }, }, }; module.exports = defineConfig(config);