39 lines
1.1 KiB
JavaScript
39 lines
1.1 KiB
JavaScript
import {defineConfig} from 'vite'
|
|
import obfuscatorPlugin from "vite-plugin-javascript-obfuscator";
|
|
import vue from '@vitejs/plugin-vue'
|
|
import {fileURLToPath, URL} from 'node:url'
|
|
|
|
// https://vite.dev/config/
|
|
export default defineConfig({
|
|
resolve: {
|
|
alias: {
|
|
'vue': 'vue/dist/vue.esm-bundler.js',
|
|
'@': fileURLToPath(new URL('./src', import.meta.url))
|
|
}
|
|
},
|
|
plugins: [
|
|
vue(),
|
|
obfuscatorPlugin({
|
|
apply: config => config['mode'] === 'production',
|
|
options: {
|
|
compact: true,
|
|
controlFlowFlattening: true,
|
|
controlFlowFlatteningThreshold: 0.75,
|
|
deadCodeInjection: true,
|
|
deadCodeInjectionThreshold: 0.4,
|
|
debugProtection: false,
|
|
disableConsoleOutput: true,
|
|
identifierNamesGenerator: 'hexadecimal',
|
|
renameGlobals: false,
|
|
stringArrayRotate: true,
|
|
selfDefending: true,
|
|
stringArray: true,
|
|
stringArrayEncoding: ['base64'],
|
|
stringArrayThreshold: 0.75,
|
|
transformObjectKeys: true,
|
|
unicodeEscapeSequence: false,
|
|
}
|
|
})
|
|
],
|
|
})
|