2018-01-15 02:50:29 +01:00
|
|
|
const webpack = require('webpack')
|
2018-12-11 16:31:48 +01:00
|
|
|
const config = require('sapper/config/webpack.js')
|
2018-01-15 02:50:29 +01:00
|
|
|
const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin
|
2018-01-20 02:17:24 +01:00
|
|
|
const LodashModuleReplacementPlugin = require('lodash-webpack-plugin')
|
2018-12-16 02:36:36 +01:00
|
|
|
const terser = require('./terser.config')
|
2018-12-16 19:22:34 +01:00
|
|
|
const CircularDependencyPlugin = require('circular-dependency-plugin')
|
2019-09-21 08:17:52 +02:00
|
|
|
const { mode, dev, resolve, inlineSvgs, allSvgs } = require('./shared.config')
|
2018-01-07 00:51:25 +01:00
|
|
|
|
2019-03-03 07:02:59 +01:00
|
|
|
const urlRegex = require('../src/routes/_utils/urlRegexSource.js')()
|
|
|
|
|
2019-02-16 05:31:22 +01: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
|
2019-10-15 05:00:57 +02:00
|
|
|
filename: dev ? '[hash]/[id].js' : '[id].[contenthash].js',
|
|
|
|
chunkFilename: dev ? '[hash]/[id].js' : '[id].[contenthash].js'
|
2019-02-16 05:31:22 +01:00
|
|
|
})
|
2019-02-16 04:46:27 +01:00
|
|
|
|
2018-01-07 00:51:25 +01:00
|
|
|
module.exports = {
|
2018-02-09 07:29:29 +01:00
|
|
|
entry: config.client.entry(),
|
2019-02-16 05:31:22 +01:00
|
|
|
output,
|
2018-12-18 09:43:51 +01:00
|
|
|
resolve,
|
2018-12-16 04:21:20 +01:00
|
|
|
mode,
|
2018-02-09 07:29:29 +01:00
|
|
|
module: {
|
|
|
|
rules: [
|
2019-08-19 00:15:20 +02:00
|
|
|
{
|
|
|
|
test: /\/_workers\/blurhash\.js$/,
|
|
|
|
use: {
|
2019-08-26 03:33:44 +02:00
|
|
|
loader: 'worker-loader',
|
|
|
|
options: {
|
2020-09-07 23:42:44 +02:00
|
|
|
filename: dev ? '[hash]/blurhash.[name].js' : 'blurhash.[contenthash].[name].js'
|
2019-08-26 03:33:44 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
test: [
|
|
|
|
/tesseract\.js\/dist\/worker\.min\.js$/,
|
|
|
|
/tesseract\.js\/dist\/worker\.min\.js.map$/,
|
|
|
|
/tesseract\.js-core\/tesseract-core\.wasm$/,
|
|
|
|
/tesseract\.js-core\/tesseract-core\.wasm.js$/
|
|
|
|
],
|
|
|
|
use: {
|
|
|
|
loader: 'file-loader',
|
|
|
|
options: {
|
2019-10-15 05:00:57 +02:00
|
|
|
name: dev ? '[hash]/tesseract-asset.[name].[ext]' : 'tesseract-asset.[contenthash].[name].[ext]'
|
2019-08-26 03:33:44 +02:00
|
|
|
}
|
2019-08-19 00:15:20 +02:00
|
|
|
}
|
|
|
|
},
|
2019-09-21 08:17:52 +02:00
|
|
|
{
|
|
|
|
test: /\.html$/,
|
|
|
|
use: {
|
|
|
|
loader: 'svelte-loader',
|
|
|
|
options: {
|
|
|
|
dev,
|
|
|
|
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
|
|
|
},
|
2018-12-16 04:21:20 +01:00
|
|
|
optimization: dev ? {} : {
|
2019-10-08 16:57:37 +02:00
|
|
|
minimize: !process.env.DEBUG,
|
2018-04-28 21:10:50 +02:00
|
|
|
minimizer: [
|
2018-12-16 02:36:36 +01:00
|
|
|
terser()
|
2019-10-08 16:57:37 +02:00
|
|
|
],
|
2019-10-15 05:00:57 +02:00
|
|
|
// TODO: we should be able to enable this, but Sapper breaks if we do so
|
|
|
|
// // isolate runtime chunk to avoid excessive cache invalidations https://webpack.js.org/guides/caching/
|
|
|
|
// runtimeChunk: 'single',
|
2018-04-21 08:35:07 +02:00
|
|
|
splitChunks: {
|
2018-12-23 20:25:35 +01:00
|
|
|
chunks: 'async',
|
|
|
|
minSize: 5000,
|
|
|
|
maxAsyncRequests: Infinity,
|
|
|
|
maxInitialRequests: Infinity,
|
2018-12-17 22:42:10 +01:00
|
|
|
name: false // these chunk names can be annoyingly long
|
2018-04-21 08:35:07 +02:00
|
|
|
}
|
2018-04-14 05:17:36 +02:00
|
|
|
},
|
2018-03-25 03:17:55 +02:00
|
|
|
plugins: [
|
2019-03-03 04:02:06 +01:00
|
|
|
new webpack.DefinePlugin({
|
|
|
|
'process.browser': true,
|
|
|
|
'process.env.NODE_ENV': JSON.stringify(mode),
|
2019-03-03 07:02:59 +01:00
|
|
|
'process.env.INLINE_SVGS': JSON.stringify(inlineSvgs),
|
2019-09-21 08:17:52 +02:00
|
|
|
'process.env.ALL_SVGS': JSON.stringify(allSvgs),
|
2020-09-13 22:37:54 +02:00
|
|
|
'process.env.URL_REGEX': urlRegex.toString()
|
2019-03-03 04:02:06 +01:00
|
|
|
}),
|
2018-12-16 02:13:40 +01:00
|
|
|
new webpack.NormalModuleReplacementPlugin(
|
|
|
|
/\/_database\/database\.js$/, // this version plays nicer with IDEs
|
|
|
|
'./database.prod.js'
|
|
|
|
),
|
2018-12-23 19:10:16 +01:00
|
|
|
new LodashModuleReplacementPlugin(),
|
2018-12-16 19:22:34 +01:00
|
|
|
new CircularDependencyPlugin({
|
|
|
|
exclude: /node_modules/,
|
|
|
|
failOnError: true,
|
|
|
|
cwd: process.cwd()
|
2018-11-04 01:06:01 +01:00
|
|
|
})
|
2018-12-16 04:21:20 +01:00
|
|
|
].concat(dev ? [
|
2018-04-14 04:46:25 +02:00
|
|
|
new webpack.HotModuleReplacementPlugin({
|
|
|
|
requestTimeout: 120000
|
|
|
|
})
|
2018-02-09 07:29:29 +01:00
|
|
|
] : [
|
2019-03-09 21:23:46 +01:00
|
|
|
|
2019-03-16 07:26:22 +01:00
|
|
|
new BundleAnalyzerPlugin({ // generates report.html
|
2018-01-15 02:50:29 +01:00
|
|
|
analyzerMode: 'static',
|
|
|
|
openAnalyzer: false,
|
2019-03-16 07:26:22 +01:00
|
|
|
logLevel: 'silent'
|
2018-02-09 07:29:29 +01:00
|
|
|
})
|
2018-03-25 03:17:55 +02:00
|
|
|
]),
|
2018-12-17 22:42:10 +01:00
|
|
|
devtool: dev ? 'inline-source-map' : 'source-map',
|
|
|
|
performance: {
|
2019-09-21 22:44:32 +02:00
|
|
|
hints: dev ? false : (process.env.DEBUG ? 'warning' : 'error'),
|
2019-08-26 03:33:44 +02:00
|
|
|
assetFilter: assetFilename => {
|
|
|
|
return !(/\.map$/.test(assetFilename)) && !/tesseract-asset/.test(assetFilename)
|
|
|
|
}
|
2018-12-17 22:42:10 +01:00
|
|
|
}
|
2018-02-09 07:29:29 +01:00
|
|
|
}
|