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-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,
|
|
|
|
store: true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
isDev && {
|
|
|
|
test: /\.css$/,
|
2018-01-14 20:09:59 +00:00
|
|
|
use: [
|
|
|
|
{ loader: 'style-loader' },
|
|
|
|
{ loader: 'css-loader' }
|
|
|
|
]
|
2018-02-09 06:29:29 +00:00
|
|
|
},
|
|
|
|
!isDev && {
|
|
|
|
test: /\.css$/,
|
|
|
|
use: [
|
|
|
|
{ loader: 'style-loader' },
|
|
|
|
{ loader: 'css-loader' }
|
|
|
|
]
|
|
|
|
}
|
|
|
|
].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-03-25 02:17:55 +01:00
|
|
|
plugins: [
|
|
|
|
new LodashModuleReplacementPlugin({
|
|
|
|
collections: true,
|
|
|
|
caching: true
|
|
|
|
})
|
|
|
|
].concat(isDev ? [
|
2018-02-09 06:29:29 +00:00
|
|
|
new webpack.HotModuleReplacementPlugin()
|
|
|
|
] : [
|
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
|
|
|
]),
|
|
|
|
devtool: isDev ? 'cheap-module-eval-source-map' : 'source-map'
|
2018-02-09 06:29:29 +00:00
|
|
|
}
|