2018-01-15 01:50:29 +00:00
|
|
|
const webpack = require('webpack')
|
2018-12-11 15:31:48 +00:00
|
|
|
const config = require('sapper/config/webpack.js')
|
2018-01-15 01:50:29 +00:00
|
|
|
const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin
|
2018-01-20 01:17:24 +00:00
|
|
|
const LodashModuleReplacementPlugin = require('lodash-webpack-plugin')
|
2018-12-16 01:36:36 +00:00
|
|
|
const terser = require('./terser.config')
|
2018-12-16 18:22:34 +00:00
|
|
|
const CircularDependencyPlugin = require('circular-dependency-plugin')
|
2019-03-03 03:02:06 +00:00
|
|
|
const { mode, dev, resolve, inlineSvgs } = require('./shared.config')
|
2018-01-06 23:51:25 +00:00
|
|
|
|
2019-03-03 06:02:59 +00:00
|
|
|
const urlRegex = require('../src/routes/_utils/urlRegexSource.js')()
|
|
|
|
|
2019-02-16 04:31:22 +00:00
|
|
|
const output = Object.assign(config.client.output(), {
|
|
|
|
// enables HMR in workers
|
|
|
|
globalObject: 'this',
|
|
|
|
// Zeit does not like filenames with "$" in them, so just keep things simple
|
|
|
|
filename: '[hash]/[id].js',
|
|
|
|
chunkFilename: '[hash]/[id].js'
|
|
|
|
})
|
2019-02-16 03:46:27 +00:00
|
|
|
|
2018-01-06 23:51:25 +00:00
|
|
|
module.exports = {
|
2018-02-09 06:29:29 +00:00
|
|
|
entry: config.client.entry(),
|
2019-02-16 04:31:22 +00:00
|
|
|
output,
|
2018-12-18 08:43:51 +00:00
|
|
|
resolve,
|
2018-12-16 03:21:20 +00:00
|
|
|
mode,
|
2018-02-09 06:29:29 +00:00
|
|
|
module: {
|
|
|
|
rules: [
|
|
|
|
{
|
|
|
|
test: /\.html$/,
|
|
|
|
use: {
|
|
|
|
loader: 'svelte-loader',
|
|
|
|
options: {
|
2018-12-16 03:21:20 +00:00
|
|
|
dev,
|
2018-02-09 06:29:29 +00:00
|
|
|
hydratable: true,
|
2018-04-28 20:10:50 +01:00
|
|
|
store: true,
|
2018-12-16 03:21:20 +00:00
|
|
|
hotReload: dev
|
2018-02-09 06:29:29 +00:00
|
|
|
}
|
|
|
|
}
|
2019-03-09 20:23:46 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
test: /node_modules\/emoji-mart/,
|
|
|
|
use: {
|
|
|
|
loader: 'babel-loader',
|
|
|
|
options: {
|
|
|
|
plugins: [
|
|
|
|
[
|
|
|
|
'transform-react-remove-prop-types',
|
|
|
|
{
|
|
|
|
removeImport: true,
|
|
|
|
additionalLibraries: [
|
|
|
|
'../../utils/shared-props'
|
|
|
|
]
|
|
|
|
}
|
|
|
|
]
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
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-12-16 03:21:20 +00:00
|
|
|
optimization: dev ? {} : {
|
2018-04-28 20:10:50 +01:00
|
|
|
minimizer: [
|
2018-12-16 01:36:36 +00:00
|
|
|
terser()
|
2018-04-21 07:35:07 +01:00
|
|
|
],
|
|
|
|
splitChunks: {
|
2018-12-23 19:25:35 +00:00
|
|
|
chunks: 'async',
|
|
|
|
minSize: 5000,
|
|
|
|
maxAsyncRequests: Infinity,
|
|
|
|
maxInitialRequests: Infinity,
|
2018-12-17 21:42:10 +00:00
|
|
|
name: false // these chunk names can be annoyingly long
|
2018-04-21 07:35:07 +01:00
|
|
|
}
|
2018-04-14 04:17:36 +01:00
|
|
|
},
|
2018-03-25 02:17:55 +01:00
|
|
|
plugins: [
|
2019-03-03 03:02:06 +00:00
|
|
|
new webpack.DefinePlugin({
|
|
|
|
'process.browser': true,
|
|
|
|
'process.env.NODE_ENV': JSON.stringify(mode),
|
2019-03-03 06:02:59 +00:00
|
|
|
'process.env.INLINE_SVGS': JSON.stringify(inlineSvgs),
|
|
|
|
'process.env.URL_REGEX': urlRegex.toString()
|
2019-03-03 03:02:06 +00:00
|
|
|
}),
|
2018-12-16 01:13:40 +00:00
|
|
|
new webpack.NormalModuleReplacementPlugin(
|
|
|
|
/\/_database\/database\.js$/, // this version plays nicer with IDEs
|
|
|
|
'./database.prod.js'
|
|
|
|
),
|
2018-12-23 18:10:16 +00:00
|
|
|
new LodashModuleReplacementPlugin(),
|
2018-12-16 18:22:34 +00:00
|
|
|
new CircularDependencyPlugin({
|
|
|
|
exclude: /node_modules/,
|
|
|
|
failOnError: true,
|
|
|
|
cwd: process.cwd()
|
2018-11-04 00:06:01 +00:00
|
|
|
})
|
2018-12-16 03:21:20 +00:00
|
|
|
].concat(dev ? [
|
2018-04-14 03:46:25 +01:00
|
|
|
new webpack.HotModuleReplacementPlugin({
|
|
|
|
requestTimeout: 120000
|
|
|
|
})
|
2018-02-09 06:29:29 +00:00
|
|
|
] : [
|
2019-03-09 20:23:46 +00:00
|
|
|
|
2019-03-16 06:26:22 +00:00
|
|
|
new BundleAnalyzerPlugin({ // generates report.html
|
2018-01-15 01:50:29 +00:00
|
|
|
analyzerMode: 'static',
|
|
|
|
openAnalyzer: false,
|
2019-03-16 06:26:22 +00:00
|
|
|
logLevel: 'silent'
|
2018-02-09 06:29:29 +00:00
|
|
|
})
|
2018-03-25 02:17:55 +01:00
|
|
|
]),
|
2018-12-17 21:42:10 +00:00
|
|
|
devtool: dev ? 'inline-source-map' : 'source-map',
|
|
|
|
performance: {
|
|
|
|
hints: dev ? false : 'error' // fail if we exceed the default performance budgets
|
|
|
|
}
|
2018-02-09 06:29:29 +00:00
|
|
|
}
|