i get an error when i build for production Uncaught ReferenceError: __VUE_PROD_DEVTOOLS__ is not defined
my workaround:
const DefinePlugin = require('webpack/lib/DefinePlugin')
Encore
...
.addPlugin(
new DefinePlugin({
__VUE_PROD_DEVTOOLS__: JSON.stringify(false)
})
)