pinafore/webpack.client.config.js

80 lines
2.2 KiB
JavaScript
Raw Normal View History

const webpack = require('webpack')
const config = require('sapper/webpack/config.js')
const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin
2018-01-20 02:17:24 +01:00
const LodashModuleReplacementPlugin = require('lodash-webpack-plugin')
2018-01-07 00:51:25 +01:00
2018-02-09 07:29:29 +01:00
const isDev = config.dev
2018-01-07 00:51:25 +01:00
module.exports = {
2018-02-09 07:29:29 +01:00
entry: config.client.entry(),
output: config.client.output(),
resolve: {
extensions: ['.js', '.html']
},
2018-03-04 18:25:44 +01:00
mode: isDev ? 'development' : 'production',
2018-02-09 07:29:29 +01:00
module: {
rules: [
{
test: /\.html$/,
exclude: /node_modules/,
use: {
loader: 'svelte-loader',
options: {
hydratable: true,
emitCss: !isDev,
cascade: false,
store: true
}
}
},
isDev && {
test: /\.css$/,
use: [
{ loader: 'style-loader' },
{ loader: 'css-loader' }
]
2018-02-09 07:29:29 +01:00
},
!isDev && {
test: /\.css$/,
/* disable while https://github.com/sveltejs/sapper/issues/79 is open */
/* use: ExtractTextPlugin.extract({
fallback: 'style-loader',
use: [{ loader: 'css-loader', options: { sourceMap:isDev } }]
}) */
use: [
{ loader: 'style-loader' },
{ loader: 'css-loader' }
]
}
].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-03-05 01:42:04 +01:00
plugins: isDev ? [
2018-02-09 07:29:29 +01:00
new webpack.HotModuleReplacementPlugin()
] : [
new webpack.DefinePlugin({
2018-02-09 07:29:29 +01:00
'process.browser': true,
'process.env.NODE_ENV': '"production"'
}),
2018-02-09 07:29:29 +01:00
/* disable while https://github.com/sveltejs/sapper/issues/79 is open */
// new ExtractTextPlugin('main.css'),
2018-03-17 07:38:28 +01:00
new LodashModuleReplacementPlugin({
collections: true,
caching: true
}),
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
})
2018-03-05 01:42:04 +01:00
],
devtool: isDev ? 'cheap-module-source-map' : 'source-map'
2018-02-09 07:29:29 +01:00
}