Files
electron-egg/frontend/vue.config.js
gaoshuaixing 853015660f 1.7.0
2021-02-03 15:45:20 +08:00

11 lines
440 B
JavaScript

module.exports = {
//Solution For Issue:You are using the runtime-only build of Vue where the template compiler is not available. Either pre-compile the templates into render functions, or use the compiler-included build.
//zhengkai.blog.csdn.net
runtimeCompiler: true,
configureWebpack: (config) => {
config["performance"] = {
"maxEntrypointSize": 10000000,
"maxAssetSize": 30000000,
}
}
}