nuxt.js打包之后页面报错:Cannot read property call of undefined

先说一下解决方法:更改nuxt.config.js里的extractCSS为false,

vuxt.config.js

代码的注释中已写明作用:在单独的文件中提取CSS。

再重新打包,访问正常。网上都是关于vue此类的问题,顺便贴一个vue此类问题的解决方法(vue解决方法):

new ExtractTextPlugin({

      filename: 'assets/css/main.css',

      allChunks: true

    })

你可能感兴趣的:(nuxt.js打包之后页面报错:Cannot read property call of undefined)