Buildしたらvendors.appのサイズが大きすぎた
vendors.app.347b3bb.js 612 KiB 6 [emitted] [immutable] [big] vendors.app
WARNING in asset size limit: The following asset(s) exceed the recommended size limit (244 KiB).
This can impact web performance.
Assets:
vendors.app.347b3bb.js (612 KiB)
このようなwarning
nuxt.configにmaxAssetSizeを設定してのりきる
700KiBまでは大丈夫にする
nuxt.config.js
...
build: {
/*
** You can extend webpack config here
*/
extend (config, ctx) {
config.performance.maxAssetSize = 700 * 1024
}
}
...
おそらくvendors.appの容量を減らす方法を検討すべきだと思いますが、
今の所はこれでのりきりました。