0👍
remove package-lock.json file and try again ‘npm install’.Thanks
- [Vuejs]-Import vue-awesome icons error while jest testing with nuxt on node 13.9.0
- [Vuejs]-Vuex problems, important project, MapActions,MapGetters
0👍
splitChunks.layouts must be false.
nuxt.config.js
splitChunks: {
layouts: false, // in my case, it was true
pages: true,
},
Source:stackexchange.com