2018-03-16 19:52:17 +00:00
|
|
|
import path from 'path'
|
2018-08-22 21:54:08 +00:00
|
|
|
import consola from 'consola'
|
2018-03-16 19:52:17 +00:00
|
|
|
|
2018-03-16 16:12:06 +00:00
|
|
|
import TimeFixPlugin from 'time-fix-plugin'
|
2018-03-16 19:11:24 +00:00
|
|
|
import _ from 'lodash'
|
2018-03-22 09:11:16 +00:00
|
|
|
import VueLoader from 'vue-loader'
|
2018-03-23 16:28:35 +00:00
|
|
|
import MiniCssExtractPlugin from 'mini-css-extract-plugin'
|
2018-03-24 13:02:04 +00:00
|
|
|
import WebpackBar from 'webpackbar'
|
2018-03-22 10:31:23 +00:00
|
|
|
|
2018-03-16 16:12:06 +00:00
|
|
|
import { isUrl, urlJoin } from '../../common/utils'
|
2018-03-23 04:09:03 +00:00
|
|
|
import StyleLoader from './utils/style-loader'
|
2018-03-16 19:52:17 +00:00
|
|
|
import WarnFixPlugin from './plugins/warnfix'
|
2018-03-22 10:31:23 +00:00
|
|
|
import StatsPlugin from './plugins/stats'
|
2016-11-07 01:34:58 +00:00
|
|
|
|
2018-03-22 14:06:54 +00:00
|
|
|
export default class WebpackBaseConfig {
|
|
|
|
constructor(builder, options) {
|
|
|
|
this.name = options.name
|
|
|
|
this.isServer = options.isServer
|
|
|
|
this.builder = builder
|
2018-03-28 22:05:27 +00:00
|
|
|
this.nuxt = this.builder.nuxt
|
2018-03-22 14:06:54 +00:00
|
|
|
this.isStatic = builder.isStatic
|
|
|
|
this.options = builder.options
|
|
|
|
this.spinner = builder.spinner
|
2018-09-10 08:27:01 +00:00
|
|
|
this.loaders = this.options.build.loaders
|
2018-03-22 14:06:54 +00:00
|
|
|
}
|
|
|
|
|
2018-08-22 21:54:08 +00:00
|
|
|
get nuxtEnv() {
|
|
|
|
return {
|
|
|
|
isDev: this.options.dev,
|
|
|
|
isServer: this.isServer,
|
|
|
|
isClient: !this.isServer
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-03-22 14:06:54 +00:00
|
|
|
getBabelOptions() {
|
|
|
|
const options = _.clone(this.options.build.babel)
|
|
|
|
|
|
|
|
if (typeof options.presets === 'function') {
|
|
|
|
options.presets = options.presets({ isServer: this.isServer })
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!options.babelrc && !options.presets) {
|
|
|
|
options.presets = [
|
|
|
|
[
|
2018-08-10 13:45:58 +00:00
|
|
|
require.resolve('@nuxtjs/babel-preset-app'),
|
2018-03-22 14:06:54 +00:00
|
|
|
{
|
2018-08-10 13:45:58 +00:00
|
|
|
buildTarget: this.isServer ? 'server' : 'client'
|
2018-03-22 14:06:54 +00:00
|
|
|
}
|
|
|
|
]
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
|
|
|
return options
|
|
|
|
}
|
|
|
|
|
2018-08-22 21:54:08 +00:00
|
|
|
getFileName(key) {
|
|
|
|
let fileName = this.options.build.filenames[key]
|
2018-08-22 15:08:51 +00:00
|
|
|
if (typeof fileName === 'function') {
|
2018-08-22 21:54:08 +00:00
|
|
|
fileName = fileName(this.nuxtEnv)
|
2018-08-22 15:08:51 +00:00
|
|
|
}
|
2018-03-22 14:06:54 +00:00
|
|
|
if (this.options.dev) {
|
2018-08-22 21:54:08 +00:00
|
|
|
const hash = /\[(chunkhash|contenthash|hash)(?::(\d+))?\]/.exec(fileName)
|
|
|
|
if (hash) {
|
|
|
|
consola.warn(`Notice: Please do not use ${hash[1]} in dev mode to prevent memory leak`)
|
|
|
|
}
|
2018-03-23 08:22:05 +00:00
|
|
|
}
|
2018-03-22 14:06:54 +00:00
|
|
|
return fileName
|
|
|
|
}
|
|
|
|
|
2018-08-22 14:24:47 +00:00
|
|
|
devtool() {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2018-03-22 14:06:54 +00:00
|
|
|
env() {
|
|
|
|
const env = {
|
|
|
|
'process.mode': JSON.stringify(this.options.mode),
|
|
|
|
'process.static': this.isStatic
|
|
|
|
}
|
|
|
|
_.each(this.options.env, (value, key) => {
|
|
|
|
env['process.env.' + key] =
|
|
|
|
['boolean', 'number'].indexOf(typeof value) !== -1
|
|
|
|
? value
|
|
|
|
: JSON.stringify(value)
|
|
|
|
})
|
|
|
|
return env
|
|
|
|
}
|
|
|
|
|
|
|
|
output() {
|
|
|
|
return {
|
2018-08-20 16:04:55 +00:00
|
|
|
path: path.resolve(this.options.buildDir, 'dist', this.isServer ? 'server' : 'client'),
|
2017-12-11 20:07:11 +00:00
|
|
|
filename: this.getFileName('app'),
|
|
|
|
chunkFilename: this.getFileName('chunk'),
|
2018-01-11 18:32:47 +00:00
|
|
|
publicPath: isUrl(this.options.build.publicPath)
|
2017-06-11 14:17:36 +00:00
|
|
|
? this.options.build.publicPath
|
2018-01-11 18:32:47 +00:00
|
|
|
: urlJoin(this.options.router.base, this.options.build.publicPath)
|
2018-03-22 14:06:54 +00:00
|
|
|
}
|
2016-11-07 01:34:58 +00:00
|
|
|
}
|
2017-06-15 22:19:53 +00:00
|
|
|
|
2018-08-22 14:24:47 +00:00
|
|
|
optimization() {
|
|
|
|
return this.options.build.optimization
|
|
|
|
}
|
|
|
|
|
2018-03-22 14:06:54 +00:00
|
|
|
alias() {
|
|
|
|
return {
|
|
|
|
'~': path.join(this.options.srcDir),
|
|
|
|
'~~': path.join(this.options.rootDir),
|
|
|
|
'@': path.join(this.options.srcDir),
|
|
|
|
'@@': path.join(this.options.rootDir),
|
|
|
|
[this.options.dir.assets]: path.join(
|
|
|
|
this.options.srcDir,
|
|
|
|
this.options.dir.assets
|
|
|
|
),
|
|
|
|
[this.options.dir.static]: path.join(
|
|
|
|
this.options.srcDir,
|
|
|
|
this.options.dir.static
|
|
|
|
)
|
|
|
|
}
|
2018-03-22 10:31:23 +00:00
|
|
|
}
|
|
|
|
|
2018-03-22 14:06:54 +00:00
|
|
|
rules() {
|
2018-03-23 04:09:03 +00:00
|
|
|
const styleLoader = new StyleLoader(
|
|
|
|
this.options,
|
|
|
|
this.builder.nuxt,
|
|
|
|
{ isServer: this.isServer }
|
|
|
|
)
|
2018-03-22 21:21:17 +00:00
|
|
|
|
2018-03-23 07:34:55 +00:00
|
|
|
const perfLoader = this.builder.perfLoader
|
|
|
|
|
2018-03-22 14:06:54 +00:00
|
|
|
return [
|
|
|
|
{
|
|
|
|
test: /\.vue$/,
|
|
|
|
loader: 'vue-loader',
|
2018-09-10 08:27:01 +00:00
|
|
|
options: this.loaders.vue
|
2018-03-22 14:06:54 +00:00
|
|
|
},
|
2018-04-21 07:27:48 +00:00
|
|
|
{
|
|
|
|
test: /\.pug$/,
|
|
|
|
oneOf: [
|
|
|
|
{
|
|
|
|
resourceQuery: /^\?vue/,
|
2018-09-10 08:27:01 +00:00
|
|
|
use: [{
|
|
|
|
loader: 'pug-plain-loader',
|
|
|
|
options: this.loaders.pugPlain
|
|
|
|
}]
|
2018-04-21 07:27:48 +00:00
|
|
|
},
|
|
|
|
{
|
2018-09-10 08:27:01 +00:00
|
|
|
use: [
|
|
|
|
'raw-loader',
|
|
|
|
{
|
|
|
|
loader: 'pug-plain-loader',
|
|
|
|
options: this.loaders.pugPlain
|
|
|
|
}
|
|
|
|
]
|
2018-04-21 07:27:48 +00:00
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
2018-03-22 14:06:54 +00:00
|
|
|
{
|
|
|
|
test: /\.jsx?$/,
|
2018-08-06 00:12:44 +00:00
|
|
|
exclude: (file) => {
|
2018-05-06 18:46:02 +00:00
|
|
|
// not exclude files outside node_modules
|
|
|
|
if (/node_modules/.test(file)) {
|
2018-08-08 10:54:05 +00:00
|
|
|
for (const module of [/\.vue\.js/].concat(this.options.build.transpile)) {
|
2018-05-06 18:46:02 +00:00
|
|
|
// item in transpile can be string or regex object
|
2018-07-31 13:10:24 +00:00
|
|
|
if (module.test(file)) {
|
2018-05-06 18:46:02 +00:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
},
|
2018-03-23 07:34:55 +00:00
|
|
|
use: perfLoader.pool('js', {
|
2018-03-22 21:21:17 +00:00
|
|
|
loader: 'babel-loader',
|
|
|
|
options: this.getBabelOptions()
|
|
|
|
})
|
|
|
|
},
|
|
|
|
{
|
|
|
|
test: /\.css$/,
|
2018-03-29 19:26:42 +00:00
|
|
|
oneOf: perfLoader.poolOneOf('css', styleLoader.apply('css'))
|
2018-03-22 21:21:17 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
test: /\.less$/,
|
2018-09-10 08:27:01 +00:00
|
|
|
oneOf: perfLoader.poolOneOf('css', styleLoader.apply('less', {
|
|
|
|
loader: 'less-loader',
|
|
|
|
options: this.loaders.less
|
|
|
|
}))
|
2018-03-22 14:06:54 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
test: /\.sass$/,
|
2018-03-29 19:26:42 +00:00
|
|
|
oneOf: perfLoader.poolOneOf('css', styleLoader.apply('sass', {
|
2018-03-22 14:06:54 +00:00
|
|
|
loader: 'sass-loader',
|
2018-09-10 08:27:01 +00:00
|
|
|
options: this.loaders.sass
|
2018-03-23 07:34:55 +00:00
|
|
|
}))
|
2018-03-22 14:06:54 +00:00
|
|
|
},
|
2018-03-22 21:21:17 +00:00
|
|
|
{
|
|
|
|
test: /\.scss$/,
|
2018-09-10 08:27:01 +00:00
|
|
|
oneOf: perfLoader.poolOneOf('css', styleLoader.apply('scss', {
|
|
|
|
loader: 'sass-loader',
|
|
|
|
options: this.loaders.scss
|
|
|
|
}))
|
2018-03-22 21:21:17 +00:00
|
|
|
},
|
2018-03-22 14:06:54 +00:00
|
|
|
{
|
|
|
|
test: /\.styl(us)?$/,
|
2018-09-10 08:27:01 +00:00
|
|
|
oneOf: perfLoader.poolOneOf('css', styleLoader.apply('stylus', {
|
|
|
|
loader: 'stylus-loader',
|
|
|
|
options: this.loaders.stylus
|
|
|
|
}))
|
2018-03-22 14:06:54 +00:00
|
|
|
},
|
|
|
|
{
|
2018-09-01 04:26:10 +00:00
|
|
|
test: /\.(png|jpe?g|gif|svg|webp)$/,
|
2018-03-23 07:34:55 +00:00
|
|
|
use: perfLoader.pool('assets', {
|
|
|
|
loader: 'url-loader',
|
2018-09-10 08:27:01 +00:00
|
|
|
options: Object.assign(
|
|
|
|
this.loaders.imgUrl,
|
|
|
|
{ name: this.getFileName('img') }
|
|
|
|
)
|
2018-03-23 07:34:55 +00:00
|
|
|
})
|
2018-03-22 14:06:54 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
test: /\.(woff2?|eot|ttf|otf)(\?.*)?$/,
|
2018-03-23 07:34:55 +00:00
|
|
|
use: perfLoader.pool('assets', {
|
|
|
|
loader: 'url-loader',
|
2018-09-10 08:27:01 +00:00
|
|
|
options: Object.assign(
|
|
|
|
this.loaders.fontUrl,
|
|
|
|
{ name: this.getFileName('font') }
|
|
|
|
)
|
2018-03-23 07:34:55 +00:00
|
|
|
})
|
2018-03-22 14:06:54 +00:00
|
|
|
},
|
|
|
|
{
|
2018-08-01 16:07:18 +00:00
|
|
|
test: /\.(webm|mp4|ogv)$/,
|
2018-03-23 07:34:55 +00:00
|
|
|
use: perfLoader.pool('assets', {
|
|
|
|
loader: 'file-loader',
|
2018-09-10 08:27:01 +00:00
|
|
|
options: Object.assign(
|
|
|
|
this.loaders.file,
|
|
|
|
{ name: this.getFileName('video') }
|
|
|
|
)
|
2018-03-23 07:34:55 +00:00
|
|
|
})
|
2018-03-20 22:11:30 +00:00
|
|
|
}
|
2018-03-22 14:06:54 +00:00
|
|
|
]
|
|
|
|
}
|
|
|
|
|
|
|
|
plugins() {
|
|
|
|
const plugins = [ new VueLoader.VueLoaderPlugin() ]
|
|
|
|
|
|
|
|
Array.prototype.push.apply(plugins, this.options.build.plugins || [])
|
|
|
|
|
|
|
|
// Add timefix-plugin before others plugins
|
|
|
|
if (this.options.dev) {
|
|
|
|
plugins.unshift(new TimeFixPlugin())
|
2018-03-18 08:51:56 +00:00
|
|
|
}
|
2018-03-11 21:28:56 +00:00
|
|
|
|
2018-03-22 14:06:54 +00:00
|
|
|
// Hide warnings about plugins without a default export (#1179)
|
|
|
|
plugins.push(new WarnFixPlugin())
|
|
|
|
|
2018-03-22 16:22:41 +00:00
|
|
|
// Build progress indicator
|
2018-03-31 16:22:14 +00:00
|
|
|
plugins.push(new WebpackBar({
|
|
|
|
profile: this.options.build.profile,
|
|
|
|
name: this.isServer ? 'server' : 'client',
|
|
|
|
color: this.isServer ? 'orange' : 'green',
|
|
|
|
compiledIn: false,
|
2018-04-01 19:30:39 +00:00
|
|
|
done: (states) => {
|
2018-03-31 16:22:14 +00:00
|
|
|
if (this.options.dev) {
|
2018-04-01 19:30:39 +00:00
|
|
|
const hasErrors = Object.values(states).some(state => state.stats.hasErrors())
|
|
|
|
|
|
|
|
if (!hasErrors) {
|
2018-08-15 11:48:34 +00:00
|
|
|
this.nuxt.showReady(false)
|
2018-04-01 19:30:39 +00:00
|
|
|
}
|
2018-03-28 22:05:27 +00:00
|
|
|
}
|
2018-03-31 16:22:14 +00:00
|
|
|
}
|
|
|
|
}))
|
2018-03-22 14:06:54 +00:00
|
|
|
|
2018-03-22 16:22:41 +00:00
|
|
|
// Add stats plugin
|
2018-03-27 22:28:17 +00:00
|
|
|
if (!this.options.dev && this.options.build.stats) {
|
2018-03-22 14:06:54 +00:00
|
|
|
plugins.push(new StatsPlugin(this.options.build.stats))
|
2018-03-22 16:22:41 +00:00
|
|
|
}
|
2017-06-15 22:19:53 +00:00
|
|
|
|
2018-03-23 16:28:35 +00:00
|
|
|
// CSS extraction
|
2018-03-23 20:37:59 +00:00
|
|
|
// MiniCssExtractPlugin does not currently supports SSR
|
|
|
|
// https://github.com/webpack-contrib/mini-css-extract-plugin/issues/48
|
|
|
|
// So we use css-loader/locals as a fallback (utils/style-loader)
|
|
|
|
if (this.options.build.extractCSS && !this.isServer) {
|
2018-03-23 16:28:35 +00:00
|
|
|
plugins.push(new MiniCssExtractPlugin(Object.assign({
|
2018-03-28 18:55:36 +00:00
|
|
|
filename: this.getFileName('css'),
|
|
|
|
chunkFilename: this.getFileName('css')
|
2018-03-23 16:28:35 +00:00
|
|
|
}, this.options.build.extractCSS)))
|
|
|
|
}
|
|
|
|
|
2018-03-22 14:06:54 +00:00
|
|
|
return plugins
|
2018-03-22 10:31:23 +00:00
|
|
|
}
|
2018-03-18 23:15:07 +00:00
|
|
|
|
2018-09-10 08:27:01 +00:00
|
|
|
extendConfig(config) {
|
2018-08-16 17:14:26 +00:00
|
|
|
if (typeof this.options.build.extend === 'function') {
|
2018-09-10 08:27:01 +00:00
|
|
|
const extendedConfig = this.options.build.extend.call(
|
|
|
|
this.builder, config, { loaders: this.loaders, ...this.nuxtEnv }
|
|
|
|
)
|
2018-08-16 17:14:26 +00:00
|
|
|
// Only overwrite config when something is returned for backwards compatibility
|
|
|
|
if (extendedConfig !== undefined) {
|
|
|
|
return extendedConfig
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return config
|
|
|
|
}
|
|
|
|
|
2018-03-22 14:06:54 +00:00
|
|
|
config() {
|
|
|
|
// Prioritize nested node_modules in webpack search path (#2558)
|
|
|
|
const webpackModulesDir = ['node_modules'].concat(this.options.modulesDir)
|
|
|
|
const config = {
|
|
|
|
name: this.name,
|
|
|
|
mode: this.options.dev ? 'development' : 'production',
|
2018-08-22 14:24:47 +00:00
|
|
|
devtool: this.devtool(),
|
|
|
|
optimization: this.optimization(),
|
2018-03-22 14:06:54 +00:00
|
|
|
output: this.output(),
|
|
|
|
performance: {
|
|
|
|
maxEntrypointSize: 1000 * 1024,
|
|
|
|
hints: this.options.dev ? false : 'warning'
|
|
|
|
},
|
|
|
|
resolve: {
|
2018-04-24 06:58:01 +00:00
|
|
|
extensions: ['.wasm', '.mjs', '.js', '.json', '.vue', '.jsx'],
|
2018-03-22 14:06:54 +00:00
|
|
|
alias: this.alias(),
|
|
|
|
modules: webpackModulesDir
|
|
|
|
},
|
|
|
|
resolveLoader: {
|
|
|
|
modules: webpackModulesDir
|
|
|
|
},
|
|
|
|
module: {
|
|
|
|
rules: this.rules()
|
|
|
|
},
|
|
|
|
plugins: this.plugins()
|
|
|
|
}
|
|
|
|
|
2018-09-10 08:27:01 +00:00
|
|
|
const extendedConfig = this.extendConfig(config)
|
|
|
|
|
2018-03-22 14:06:54 +00:00
|
|
|
// Clone deep avoid leaking config between Client and Server
|
2018-09-10 08:27:01 +00:00
|
|
|
return _.cloneDeep(extendedConfig)
|
2018-03-22 14:06:54 +00:00
|
|
|
}
|
2016-11-07 01:34:58 +00:00
|
|
|
}
|