mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-06 06:03:58 +00:00
d7fbe47c31
`.cache/` should be git ignored in projects. disabled by default. Can be enabled using `options.build.dll: true`
151 lines
4.4 KiB
JavaScript
151 lines
4.4 KiB
JavaScript
import ExtractTextPlugin from 'extract-text-webpack-plugin'
|
|
import { cloneDeep } from 'lodash'
|
|
import { join, resolve } from 'path'
|
|
import webpack from 'webpack'
|
|
import { isUrl, urlJoin } from 'utils'
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Webpack Shared Config
|
|
|
|
|
| This is the config which is extended by the server and client
|
|
| webpack config files
|
|
|--------------------------------------------------------------------------
|
|
*/
|
|
export default function webpackBaseConfig (name) {
|
|
const nodeModulesDir = join(__dirname, '..', 'node_modules')
|
|
|
|
const config = {
|
|
name,
|
|
devtool: this.options.dev ? 'cheap-module-source-map' : 'nosources-source-map',
|
|
entry: {
|
|
app: null
|
|
},
|
|
output: {
|
|
path: resolve(this.options.buildDir, 'dist'),
|
|
filename: this.options.build.filenames.app,
|
|
chunkFilename: this.options.build.filenames.chunk,
|
|
publicPath: (isUrl(this.options.build.publicPath)
|
|
? this.options.build.publicPath
|
|
: urlJoin(this.options.router.base, this.options.build.publicPath))
|
|
},
|
|
performance: {
|
|
maxEntrypointSize: 1000000,
|
|
maxAssetSize: 300000,
|
|
hints: this.options.dev ? false : 'warning'
|
|
},
|
|
resolve: {
|
|
extensions: ['.js', '.json', '.vue', '.ts'],
|
|
alias: {
|
|
'~': join(this.options.srcDir),
|
|
'~~': join(this.options.rootDir),
|
|
'@': join(this.options.srcDir),
|
|
'@@': join(this.options.rootDir),
|
|
|
|
// Used by vue-loader so we can use in templates
|
|
// with <img src="~/assets/nuxt.png" />
|
|
'assets': join(this.options.srcDir, 'assets'),
|
|
'static': join(this.options.srcDir, 'static')
|
|
},
|
|
modules: [
|
|
this.options.modulesDir,
|
|
nodeModulesDir
|
|
]
|
|
},
|
|
resolveLoader: {
|
|
modules: [
|
|
this.options.modulesDir,
|
|
nodeModulesDir
|
|
]
|
|
},
|
|
module: {
|
|
noParse: /es6-promise\.js$/, // Avoid webpack shimming process
|
|
rules: [
|
|
{
|
|
test: /\.vue$/,
|
|
loader: 'vue-loader',
|
|
options: this.vueLoader()
|
|
},
|
|
{
|
|
test: /\.js$/,
|
|
loader: 'babel-loader',
|
|
exclude: /node_modules/,
|
|
options: Object.assign({}, this.babelOptions)
|
|
},
|
|
{ test: /\.css$/, use: this.styleLoader('css') },
|
|
{ test: /\.less$/, use: this.styleLoader('less', 'less-loader') },
|
|
{ test: /\.sass$/, use: this.styleLoader('sass', 'sass-loader?indentedSyntax') },
|
|
{ test: /\.scss$/, use: this.styleLoader('scss', 'sass-loader') },
|
|
{ test: /\.styl(us)?$/, use: this.styleLoader('stylus', 'stylus-loader') },
|
|
{
|
|
test: /\.(png|jpe?g|gif|svg)$/,
|
|
loader: 'url-loader',
|
|
options: {
|
|
limit: 1000, // 1KO
|
|
name: 'img/[name].[hash:7].[ext]'
|
|
}
|
|
},
|
|
{
|
|
test: /\.(woff2?|eot|ttf|otf)(\?.*)?$/,
|
|
loader: 'url-loader',
|
|
options: {
|
|
limit: 1000, // 1 KO
|
|
name: 'fonts/[name].[hash:7].[ext]'
|
|
}
|
|
},
|
|
{
|
|
test: /\.(webm|mp4)$/,
|
|
loader: 'file-loader',
|
|
options: {
|
|
name: 'videos/[name].[hash:7].[ext]'
|
|
}
|
|
}
|
|
]
|
|
},
|
|
plugins: this.options.build.plugins
|
|
}
|
|
|
|
// CSS extraction
|
|
if (this.options.build.extractCSS) {
|
|
config.plugins.push(new ExtractTextPlugin({
|
|
filename: this.options.build.filenames.css
|
|
}))
|
|
}
|
|
|
|
// Workaround for hiding Warnings about plugins without a default export (#1179)
|
|
config.plugins.push({
|
|
apply (compiler) {
|
|
compiler.plugin('done', stats => {
|
|
stats.compilation.warnings = stats.compilation.warnings.filter(warn => {
|
|
if (warn.name === 'ModuleDependencyWarning' && warn.message.includes(`export 'default'`) && warn.message.includes('plugin')) {
|
|
return false
|
|
}
|
|
return true
|
|
})
|
|
})
|
|
}
|
|
})
|
|
|
|
// --------------------------------------
|
|
// Dev specific config
|
|
// --------------------------------------
|
|
if (this.options.dev) {
|
|
//
|
|
}
|
|
|
|
// --------------------------------------
|
|
// Production specific config
|
|
// --------------------------------------
|
|
if (!this.options.dev) {
|
|
// This is needed in webpack 2 for minify CSS
|
|
config.plugins.push(
|
|
new webpack.LoaderOptionsPlugin({
|
|
minimize: true
|
|
})
|
|
)
|
|
}
|
|
|
|
// Clone deep avoid leaking config between Client and Server
|
|
return cloneDeep(config)
|
|
}
|