mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 16:43:55 +00:00
13 lines
344 B
JavaScript
13 lines
344 B
JavaScript
module.exports = {
|
|
build: {
|
|
dll: true,
|
|
extend(config, options) {
|
|
if (options.isClient) {
|
|
const dlls = config.plugins.filter(plugin => plugin.constructor.name === 'DllReferencePlugin')
|
|
console.log('Using dll for ' + dlls.length + ' libs') // eslint-disable-line no-console
|
|
}
|
|
return config
|
|
}
|
|
}
|
|
}
|