Open Thomas-1985 opened 3 years ago
@Thomas-1985 have you solved the problem?
No, i have no idea how :(
I also tried the following in my vue.config.js
const fs = require('fs')
const WebpackObfuscator = require('webpack-obfuscator');
module.exports = {
configureWebpack: {
plugins: [
new WebpackObfuscator ({
compact: true,
rotateStringArray: true
})
]
},
chainWebpack: config => {
config.module.rules.delete('eslint')
},
outputDir: process.env.OUTPUT_DIR || '../public'
}
The result is the same, see the above screenshot
Does somebody have a clue? I still wasn't able to fix this
Hi
Versions:
"webpack-obfuscator": "^2.6.0", "@vue/cli-service": "^4.5.13", "vue": "^2.6.11",
I am trying to obfuscate my vue.js 2 webapp. My cue.config.js looks like this `const fs = require('fs')
module.exports = { chainWebpack: config => { config.module.rules.delete('eslint')
}, outputDir: process.env.OUTPUT_DIR }`
I disabled all options but i cannot get it to work. As soon as i run
npm run serve --open
the app is compiled and the browser opens, but i get no output (i should be redirected to the login page of my app). Instead i get the attached error in my browser consoleIm unsure what i am doing wrong here
e