nuxt升级到v2之后,终于可以使用webpack 4了,喜大普奔。新版本的webpack给构建项目提供更多的优化。具体的webpack 4 的介绍可以参看官网(https://webpack.js.org/)。 这里主要介绍的是利用webpakc 4中的splitChunks
优化nuxt build之后产生模块体积。
1. 问题背景
为了便于理解,我建立了一个简单的项目,下面是基本的配置文件nuxt.config.js
。
module.exports = {
/*
** Headers of the page
*/
head: {
title: 'starter',
meta: [
{ charset: 'utf-8' },
{ name: 'viewport', content: 'width=device-width, initial-scale=1' },
{ hid: 'description', name: 'description', content: 'Nuxt.js project' }
],
link: [
{ rel: 'icon', type: 'image/x-icon', href: '/favicon.ico' },
{ rel: 'stylesheet', href: 'https://unpkg.com/element-ui/lib/theme-chalk/index.css'}
]
},
apollo: {
clientConfigs: {
default: {
httpEndpoint: 'http://localhost:4000',
}
}
},
/*
** Global CSS
*/
css: ['~/assets/css/main.css'],
plugins: ['~/plugins/vuetify.js', '~plugins/axios.js', '~/plugins/element-ui.js'],
/*
** Add axios globally
*/
build: {
analyze: true,
/*
** Run ESLINT on save
*/
extend (config, ctx) {
if (ctx.isDev && ctx.isClient) {
config.module.rules.push({
enforce: 'pre',
test: /\.(js|vue)$/,
loader: 'eslint-loader',
exclude: /(node_modules)/
})
}
}
},
modules: ['@nuxtjs/apollo']
}
通过config
文件,不难发现本项目需要的依赖包括vuetify
, axios
, element-ui
, 还有@nuxtjs/apollo
。这些模块,尤其是vuetify
和element-ui
都是体积比较大的模块。nuxt build
之后,在.nuxt/dist
目录下产生了client
和server
两个文件夹,分别包含了前后端需要的文件。下图是控制台输出的client
中文件信息,
上图中明显标出, vendors.app.js
的体积为1.13M
,超出了推荐值,警告会影响性能。而下图更加直观的给出了每个bundle
中包含的模块信息。很明显的,vendors.app.js
中的vuetify
和element-ui
占据了很大的空间,是造成vendors.app.js
超大体积的主要原因。
在实际应用中,加载较大体积的资源耗费的时间也会相对较大,尤其在网速不给力的时候,会对页面性能造成很大的影响。因此,将这些模块拆分成更小的模块是非常必要的。
2. Nuxt基本打包原理
Nuxt 2
中是用webpack 4
进行打包,对应的config
文件都在template\node_modules\nuxt\lib\builder\webpack
目录下。其中,base.js
提供了webpack
的基本配置,而client.js
和server.js
提供了打包前后端时的具体配置项。下面,我们来仔细研究client.js
来推导vendors.app.js
生成原理。在client.js
中定义了入口文件。
config.entry = {
app: [path.resolve(this.options.buildDir, 'client.js')]
}
最终直接打包出来的文件由四个部分组成,
runtime.js
commons.app.js
vendors.app.js
app.js
除了runtime.js
,其他文件名字中均包含app
单词。之所以最后拆分成四个js文件,是因为nuxt 2
中启用了webpack 4
的splitChunks
功能。顾名思义,就是把拆分模块。对应的源码如下,
optimization() {
const optimization = super.optimization()
// Small, known and common modules which are usually used project-wise
// Sum of them may not be more than 244 KiB
if (
this.options.build.splitChunks.commons === true &&
optimization.splitChunks.cacheGroups.commons === undefined
) {
optimization.splitChunks.cacheGroups.commons = {
test: /node_modules[\\/](vue|vue-loader|vue-router|vuex|vue-meta|core-js|@babel\/runtime|axios|webpack|setimmediate|timers-browserify|process|regenerator-runtime|cookie|js-cookie|is-buffer|dotprop|nuxt\.js)[\\/]/,
chunks: 'all',
priority: 10,
name: true
}
}
return optimization
}
上述源码表示开启了optimization
的功能,其中还增加了一个cacheGroup
,将符合test
正则表达式的模块过滤出来,单独打包成common.app.js
,而剩下的则是打包进了vendor.app.js
。而这里的optimization
是继承自base.js
中的optimization
配置,在进行进一步配置。追根溯源,最开始传入的配置都来源于template\node_modules\nuxt\lib\common\nuxt.config.js
。事实上这里的nuxt.config.js
提供了所有可能的配置,是很好的参考。这里我们重点关注关于optimization
和splitChunks
选项,对应代码如下。
export default {
...
build: {
...
optimization: {
runtimeChunk: 'single',
minimize: undefined,
minimizer: undefined,
splitChunks: {
chunks: 'all',
automaticNameDelimiter: '.',
name: undefined,
cacheGroups: {}
}
},
splitChunks: {
layouts: false,
pages: true,
commons: true
},
}
}
3. 配置nuxt.config.js以提取大体积模块
因此,我们可以在自己项目中的nuxt.config.js
中添加cacheGroups
选项,将一些体积较大的模块过滤出来生成单独的文件。我在nuxt.config.js
中增加了两个cacheGroups
分别打包vuetify
和element-ui
。由于这两个的cacheGroups
的priority
是20
,高于commons
,所以某一模块即使符合commons
的test
的正则表达式,也会优先被打包进去vuetify
或element-ui
中。
build: {
...
optimization: {
splitChunks: {
chunks: 'all',
automaticNameDelimiter: '.',
maxAsyncRequests: 7,
cacheGroups: {
vuetify: {
test: /node_modules[\\/]vuetify/,
chunks: 'all',
priority: 20,
name: true
},
elementui: {
test: /node_modules[\\/]element-ui/,
chunks: 'all',
priority: 20,
name: true
}
}
}
},
}
下面两张是修改后的nuxt.config.js
下build
出来的结果,
显然,vendors.app.js
的体积已经由1.13M
缩小到233K
,而最中app
构成的模块中多了elementui.app.js
和vuetify.app.js
两个。可以说我们已经成功的将模块进行了更小一步的拆分。
4. 结尾
在实际项目中,可以根据项目中依赖模块的实际情况,进行分组,使得打包出来的模块尽可能小。
事实上,上述修改后打包结果并不是最优,elementui.app.js
和vuetify.app.js
都超过了最优值,分别为562K
和360k
。从bundle analyzer
图发现,这两个文件中都包含了一个体积较大的单个文件,因此难以再拆分。针对这种情况,我们可以将其放在cdn
上,作为外部资源引用。
以后,我们将介绍如何在nuxt 2
中巧妙引用外部资源来减小项目体积,加速页面速度。敬请期待~
网友评论