vue.config.js 440 B

1234567891011
  1. module.exports = {
  2. //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.
  3. //zhengkai.blog.csdn.net
  4. runtimeCompiler: true,
  5. configureWebpack: (config) => {
  6. config["performance"] = {
  7. "maxEntrypointSize": 10000000,
  8. "maxAssetSize": 30000000,
  9. }
  10. }
  11. }