mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-27 16:12:12 +00:00
feat: make optimization and splitChunks configurable
This commit is contained in:
parent
85d6c5758a
commit
0ce8d88f38
@ -5,7 +5,7 @@ import '<%= relativeToBuild(resolvePath(c.src || c)) %>'
|
|||||||
<% }) %>
|
<% }) %>
|
||||||
|
|
||||||
<%= Object.keys(layouts).map(key => {
|
<%= Object.keys(layouts).map(key => {
|
||||||
if (splitPages) {
|
if (splitChunks.layouts) {
|
||||||
return `const _${hash(key)} = () => import('${layouts[key]}' /* webpackChunkName: "${wChunk('layouts/' + key)}" */).then(m => m.default || m)`
|
return `const _${hash(key)} = () => import('${layouts[key]}' /* webpackChunkName: "${wChunk('layouts/' + key)}" */).then(m => m.default || m)`
|
||||||
} else {
|
} else {
|
||||||
return `import _${hash(key)} from '${layouts[key]}'`
|
return `import _${hash(key)} from '${layouts[key]}'`
|
||||||
@ -14,7 +14,7 @@ import '<%= relativeToBuild(resolvePath(c.src || c)) %>'
|
|||||||
|
|
||||||
const layouts = { <%= Object.keys(layouts).map(key => `"_${key}": _${hash(key)}`).join(',') %> }
|
const layouts = { <%= Object.keys(layouts).map(key => `"_${key}": _${hash(key)}`).join(',') %> }
|
||||||
|
|
||||||
<% if (splitPages) { %>let resolvedLayouts = {}<% } %>
|
<% if (splitChunks.layouts) { %>let resolvedLayouts = {}<% } %>
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
head: <%= serialize(head).replace('head(', 'function(').replace('titleTemplate(', 'function(') %>,
|
head: <%= serialize(head).replace('head(', 'function(').replace('titleTemplate(', 'function(') %>,
|
||||||
@ -78,7 +78,7 @@ export default {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
<% } %>
|
<% } %>
|
||||||
<% if (splitPages) { %>
|
<% if (splitChunks.layouts) { %>
|
||||||
setLayout (layout) {
|
setLayout (layout) {
|
||||||
if (!layout || !resolvedLayouts['_' + layout]) layout = 'default'
|
if (!layout || !resolvedLayouts['_' + layout]) layout = 'default'
|
||||||
this.layoutName = layout
|
this.layoutName = layout
|
||||||
|
@ -8,7 +8,7 @@ import Router from 'vue-router'
|
|||||||
components.push({ _name: route._name, component: route.component, name: route.name, chunkName: route.chunkName })
|
components.push({ _name: route._name, component: route.component, name: route.name, chunkName: route.chunkName })
|
||||||
res += tab + '{\n'
|
res += tab + '{\n'
|
||||||
res += tab + '\tpath: ' + JSON.stringify(route.path)
|
res += tab + '\tpath: ' + JSON.stringify(route.path)
|
||||||
res += (route.component) ? ',\n\t' + tab + 'component: ' + (splitPages ? route._name : `() => ${route._name}.default || ${route._name}`) : ''
|
res += (route.component) ? ',\n\t' + tab + 'component: ' + (splitChunks.pages ? route._name : `() => ${route._name}.default || ${route._name}`) : ''
|
||||||
res += (route.redirect) ? ',\n\t' + tab + 'redirect: ' + JSON.stringify(route.redirect) : ''
|
res += (route.redirect) ? ',\n\t' + tab + 'redirect: ' + JSON.stringify(route.redirect) : ''
|
||||||
res += (route.name) ? ',\n\t' + tab + 'name: ' + JSON.stringify(route.name) : ''
|
res += (route.name) ? ',\n\t' + tab + 'name: ' + JSON.stringify(route.name) : ''
|
||||||
res += (route.children) ? ',\n\t' + tab + 'children: [\n' + recursiveRoutes(routes[i].children, tab + '\t\t', components) + '\n\t' + tab + ']' : ''
|
res += (route.children) ? ',\n\t' + tab + 'children: [\n' + recursiveRoutes(routes[i].children, tab + '\t\t', components) + '\n\t' + tab + ']' : ''
|
||||||
@ -24,7 +24,7 @@ const _routes = recursiveRoutes(router.routes, '\t\t', _components)
|
|||||||
const chunkName = wChunk(route.chunkName)
|
const chunkName = wChunk(route.chunkName)
|
||||||
const name = route._name
|
const name = route._name
|
||||||
|
|
||||||
if (splitPages) {
|
if (splitChunks.pages) {
|
||||||
return `const ${name} = () => import('${path}' /* webpackChunkName: "${chunkName}" */).then(m => m.default || m)`
|
return `const ${name} = () => import('${path}' /* webpackChunkName: "${chunkName}" */).then(m => m.default || m)`
|
||||||
} else {
|
} else {
|
||||||
return `import ${name} from '${path}'`
|
return `import ${name} from '${path}'`
|
||||||
|
@ -211,7 +211,7 @@ export default class Builder {
|
|||||||
.map(ext => ext.replace(/^\./, ''))
|
.map(ext => ext.replace(/^\./, ''))
|
||||||
.join('|'),
|
.join('|'),
|
||||||
messages: this.options.messages,
|
messages: this.options.messages,
|
||||||
splitPages: this.options.build.splitPages,
|
splitChunks: this.options.build.splitChunks,
|
||||||
uniqBy: _.uniqBy,
|
uniqBy: _.uniqBy,
|
||||||
isDev: this.options.dev,
|
isDev: this.options.dev,
|
||||||
debug: this.options.debug,
|
debug: this.options.debug,
|
||||||
|
@ -78,48 +78,59 @@ export default function webpackClientConfig() {
|
|||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|
||||||
// Optimization
|
// -- Optimization --
|
||||||
config.optimization.splitChunks = {
|
config.optimization = this.options.build.optimization
|
||||||
chunks: 'all',
|
|
||||||
// TODO: remove spa after https://github.com/jantimon/html-webpack-plugin/issues/878 solved
|
|
||||||
name: this.options.dev || this.options.mode === 'spa',
|
|
||||||
|
|
||||||
// Explicit cache groups
|
// TODO: remove spa check after https://github.com/jantimon/html-webpack-plugin/issues/878 solved
|
||||||
cacheGroups: {
|
if (this.options.dev || this.options.mode === 'spa') {
|
||||||
// Vue.js core modules
|
config.optimization.splitChunks.name = true
|
||||||
vue: {
|
}
|
||||||
test: /node_modules\/(vue|vue-loader|vue-router|vuex|vue-meta)\//,
|
|
||||||
chunks: 'initial',
|
// ... Explicit cache groups
|
||||||
name: 'vue',
|
|
||||||
priority: 10,
|
// Vue.js core modules
|
||||||
enforce: true
|
if (this.options.build.splitChunks.vue) {
|
||||||
},
|
config.optimization.splitChunks.cacheGroups.vue = {
|
||||||
// Common modules which are usually included in projects
|
test: /node_modules\/(vue|vue-loader|vue-router|vuex|vue-meta)\//,
|
||||||
common: {
|
chunks: 'initial',
|
||||||
test: /node_modules\/(core-js|babel-runtime|lodash|es6-promise|moment|axios|webpack|setimediate|timers-browserify|process)\//,
|
name: 'vue',
|
||||||
chunks: 'initial',
|
priority: 10,
|
||||||
name: 'common',
|
enforce: true
|
||||||
priority: 9
|
}
|
||||||
},
|
}
|
||||||
// Generated templates
|
|
||||||
main: {
|
// Common modules which are usually included in projects
|
||||||
test: /\.nuxt\//,
|
if (this.options.build.splitChunks.common) {
|
||||||
chunks: 'initial',
|
config.optimization.splitChunks.cacheGroups.common = {
|
||||||
name: 'main',
|
test: /node_modules\/(core-js|babel-runtime|lodash|es6-promise|moment|axios|webpack|setimediate|timers-browserify|process)\//,
|
||||||
priority: 8
|
chunks: 'initial',
|
||||||
},
|
name: 'common',
|
||||||
// Other vendors inside node_modules
|
priority: 9
|
||||||
vendor: {
|
}
|
||||||
test: /node_modules\//,
|
}
|
||||||
chunks: 'initial',
|
|
||||||
name: 'vendor',
|
// Generated templates
|
||||||
priority: 8
|
if (this.options.build.splitChunks.main) {
|
||||||
}
|
config.optimization.splitChunks.cacheGroups.main = {
|
||||||
|
test: /\.nuxt\//,
|
||||||
|
chunks: 'initial',
|
||||||
|
name: 'main',
|
||||||
|
priority: 8
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Other vendors inside node_modules
|
||||||
|
if (this.options.build.splitChunks.vendor) {
|
||||||
|
config.optimization.splitChunks.cacheGroups.vendor = {
|
||||||
|
test: /node_modules\//,
|
||||||
|
chunks: 'initial',
|
||||||
|
name: 'vendor',
|
||||||
|
priority: 8
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Create additional runtime chunk for cache boosting
|
// Create additional runtime chunk for cache boosting
|
||||||
config.optimization.runtimeChunk = true
|
config.optimization.runtimeChunk = this.options.build.splitChunks.runtime
|
||||||
|
|
||||||
// --------------------------------------
|
// --------------------------------------
|
||||||
// Dev specific config
|
// Dev specific config
|
||||||
|
@ -18,7 +18,6 @@ export default {
|
|||||||
build: {
|
build: {
|
||||||
analyze: false,
|
analyze: false,
|
||||||
profile: process.argv.includes('--profile'),
|
profile: process.argv.includes('--profile'),
|
||||||
splitPages: true,
|
|
||||||
maxChunkSize: false,
|
maxChunkSize: false,
|
||||||
extractCSS: false,
|
extractCSS: false,
|
||||||
cssSourceMap: undefined,
|
cssSourceMap: undefined,
|
||||||
@ -31,6 +30,20 @@ export default {
|
|||||||
},
|
},
|
||||||
styleResources: {},
|
styleResources: {},
|
||||||
plugins: [],
|
plugins: [],
|
||||||
|
optimization: {
|
||||||
|
splitChunks: {
|
||||||
|
chunks: 'all',
|
||||||
|
name: false,
|
||||||
|
cacheGroups: {}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
splitChunks: {
|
||||||
|
pages: true,
|
||||||
|
vendor: true,
|
||||||
|
commons: true,
|
||||||
|
runtime: true,
|
||||||
|
layouts: true
|
||||||
|
},
|
||||||
babel: {
|
babel: {
|
||||||
babelrc: false
|
babelrc: false
|
||||||
},
|
},
|
||||||
|
Loading…
Reference in New Issue
Block a user