2018-01-15 01:50:29 +00:00
|
|
|
const webpack = require('webpack')
|
|
|
|
const config = require('sapper/webpack/config.js')
|
|
|
|
const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin
|
2018-01-20 01:17:24 +00:00
|
|
|
const LodashModuleReplacementPlugin = require('lodash-webpack-plugin')
|
2018-04-14 04:17:36 +01:00
|
|
|
const UglifyWebpackPlugin = require('uglifyjs-webpack-plugin')
|
2018-04-17 16:19:15 +01:00
|
|
|
const MiniCssExtractPlugin = require('mini-css-extract-plugin')
|
|
|
|
const OptimizeCSSAssetsPlugin = require('optimize-css-assets-webpack-plugin')
|
2018-01-06 23:51:25 +00:00
|
|
|
|
2018-02-09 06:29:29 +00:00
|
|
|
const isDev = config.dev
|
2018-01-06 23:51:25 +00:00
|
|
|
|
|
|
|
module.exports = {
|
2018-02-09 06:29:29 +00:00
|
|
|
entry: config.client.entry(),
|
|
|
|
output: config.client.output(),
|
|
|
|
resolve: {
|
2018-03-25 02:17:55 +01:00
|
|
|
extensions: ['.js', '.json', '.html']
|
2018-02-09 06:29:29 +00:00
|
|
|
},
|
2018-03-04 17:25:44 +00:00
|
|
|
mode: isDev ? 'development' : 'production',
|
2018-02-09 06:29:29 +00:00
|
|
|
module: {
|
|
|
|
rules: [
|
|
|
|
{
|
|
|
|
test: /\.html$/,
|
|
|
|
exclude: /node_modules/,
|
|
|
|
use: {
|
|
|
|
loader: 'svelte-loader',
|
|
|
|
options: {
|
|
|
|
hydratable: true,
|
|
|
|
emitCss: !isDev,
|
|
|
|
cascade: false,
|
2018-04-28 20:10:50 +01:00
|
|
|
store: true,
|
|
|
|
hot: isDev
|
2018-02-09 06:29:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
2018-04-17 16:19:15 +01:00
|
|
|
isDev && {
|
|
|
|
test: /\.css$/,
|
|
|
|
use: [
|
|
|
|
'style-loader',
|
|
|
|
'css-loader'
|
|
|
|
]
|
|
|
|
},
|
|
|
|
!isDev && {
|
2018-02-09 06:29:29 +00:00
|
|
|
test: /\.css$/,
|
|
|
|
use: [
|
2018-04-17 16:19:15 +01:00
|
|
|
MiniCssExtractPlugin.loader,
|
|
|
|
'css-loader'
|
2018-02-09 06:29:29 +00:00
|
|
|
]
|
|
|
|
}
|
|
|
|
].filter(Boolean)
|
|
|
|
},
|
2018-01-21 04:52:40 +00:00
|
|
|
node: {
|
2018-02-09 06:29:29 +00:00
|
|
|
setImmediate: false
|
2018-01-21 04:52:40 +00:00
|
|
|
},
|
2018-04-28 20:10:50 +01:00
|
|
|
optimization: isDev ? {} : {
|
|
|
|
minimizer: [
|
2018-04-17 16:19:15 +01:00
|
|
|
new UglifyWebpackPlugin({
|
|
|
|
cache: true,
|
|
|
|
parallel: true,
|
|
|
|
sourceMap: true,
|
|
|
|
uglifyOptions: {
|
|
|
|
ecma: 6,
|
|
|
|
mangle: true,
|
|
|
|
compress: true,
|
|
|
|
output: {
|
|
|
|
comments: false
|
|
|
|
}
|
2018-04-14 04:17:36 +01:00
|
|
|
}
|
2018-04-17 16:19:15 +01:00
|
|
|
}),
|
|
|
|
new OptimizeCSSAssetsPlugin({})
|
2018-04-21 07:35:07 +01:00
|
|
|
],
|
|
|
|
splitChunks: {
|
|
|
|
chunks: 'async',
|
|
|
|
minSize: 5000,
|
|
|
|
maxAsyncRequests: Infinity,
|
|
|
|
maxInitialRequests: Infinity
|
|
|
|
}
|
2018-04-14 04:17:36 +01:00
|
|
|
},
|
2018-03-25 02:17:55 +01:00
|
|
|
plugins: [
|
2018-04-21 07:35:07 +01:00
|
|
|
new LodashModuleReplacementPlugin()
|
2018-03-25 02:17:55 +01:00
|
|
|
].concat(isDev ? [
|
2018-04-14 03:46:25 +01:00
|
|
|
new webpack.HotModuleReplacementPlugin({
|
|
|
|
requestTimeout: 120000
|
|
|
|
})
|
2018-02-09 06:29:29 +00:00
|
|
|
] : [
|
2018-04-17 16:19:15 +01:00
|
|
|
new MiniCssExtractPlugin({
|
|
|
|
filename: '[name].[hash].css',
|
|
|
|
chunkFilename: '[name].[id].[hash].css'
|
|
|
|
}),
|
2018-01-15 01:50:29 +00:00
|
|
|
new webpack.DefinePlugin({
|
2018-02-09 06:29:29 +00:00
|
|
|
'process.browser': true,
|
|
|
|
'process.env.NODE_ENV': '"production"'
|
2018-01-15 01:50:29 +00:00
|
|
|
}),
|
|
|
|
new BundleAnalyzerPlugin({ // generates report.html and stats.json
|
|
|
|
analyzerMode: 'static',
|
|
|
|
generateStatsFile: true,
|
|
|
|
statsOptions: {
|
|
|
|
// allows usage with http://chrisbateman.github.io/webpack-visualizer/
|
2018-02-09 06:29:29 +00:00
|
|
|
chunkModules: true
|
2018-01-15 01:50:29 +00:00
|
|
|
},
|
|
|
|
openAnalyzer: false,
|
2018-02-09 06:29:29 +00:00
|
|
|
logLevel: 'silent' // do not bother Webpacker, who runs with --json and parses stdout
|
|
|
|
})
|
2018-03-25 02:17:55 +01:00
|
|
|
]),
|
2018-04-13 01:52:32 +01:00
|
|
|
devtool: isDev ? 'cheap-module-source-map' : 'source-map'
|
2018-02-09 06:29:29 +00:00
|
|
|
}
|