pinafore/webpack/client.config.js

81 lines
2.3 KiB
JavaScript
Raw Normal View History

const webpack = require('webpack')
const config = require('sapper/config/webpack.js')
const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin
2018-01-20 02:17:24 +01:00
const LodashModuleReplacementPlugin = require('lodash-webpack-plugin')
const terser = require('./terser.config')
const CircularDependencyPlugin = require('circular-dependency-plugin')
const { mode, dev, resolve } = require('./shared.config')
2018-01-07 00:51:25 +01:00
module.exports = {
2018-02-09 07:29:29 +01:00
entry: config.client.entry(),
output: Object.assign(config.client.output(), { globalObject: 'this' }), // enables HMR in workers
resolve,
mode,
2018-02-09 07:29:29 +01:00
module: {
rules: [
{
test: /\.html$/,
use: {
loader: 'svelte-loader',
options: {
dev,
2018-02-09 07:29:29 +01:00
hydratable: true,
store: true,
hotReload: dev
2018-02-09 07:29:29 +01:00
}
}
}
].filter(Boolean)
},
2018-01-21 05:52:40 +01:00
node: {
2018-02-09 07:29:29 +01:00
setImmediate: false
2018-01-21 05:52:40 +01:00
},
optimization: dev ? {} : {
minimizer: [
terser()
],
splitChunks: {
chunks: 'async',
minSize: 5000,
maxAsyncRequests: Infinity,
maxInitialRequests: Infinity,
name: false // these chunk names can be annoyingly long
}
},
plugins: [
new webpack.NormalModuleReplacementPlugin(
/\/_database\/database\.js$/, // this version plays nicer with IDEs
'./database.prod.js'
),
new LodashModuleReplacementPlugin(),
new CircularDependencyPlugin({
exclude: /node_modules/,
failOnError: true,
cwd: process.cwd()
})
].concat(dev ? [
2018-04-14 04:46:25 +02:00
new webpack.HotModuleReplacementPlugin({
requestTimeout: 120000
})
2018-02-09 07:29:29 +01:00
] : [
new webpack.DefinePlugin({
2018-02-09 07:29:29 +01:00
'process.browser': true,
'process.env.NODE_ENV': JSON.stringify(mode)
}),
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 07:29:29 +01:00
chunkModules: true
},
openAnalyzer: false,
2018-02-09 07:29:29 +01:00
logLevel: 'silent' // do not bother Webpacker, who runs with --json and parses stdout
})
]),
devtool: dev ? 'inline-source-map' : 'source-map',
performance: {
hints: dev ? false : 'error' // fail if we exceed the default performance budgets
}
2018-02-09 07:29:29 +01:00
}