4bd181d3cc
* fix: update to latest sapper fixes #416 * fix error and debug pages * requestIdleCallback makes column switching feel way nicer than double rAF * add export feature * add better csp info * workaround for sapper sub-page issue * clarify in readme about exporting * fix now config * switch from rIC to triple raf * style-loader is no longer used * update theming guide
17 lines
435 B
JavaScript
17 lines
435 B
JavaScript
const config = require('sapper/config/webpack.js')
|
|
const webpack = require('webpack')
|
|
|
|
const isDev = config.dev
|
|
|
|
module.exports = {
|
|
entry: config.serviceworker.entry(),
|
|
output: config.serviceworker.output(),
|
|
mode: process.env.NODE_ENV,
|
|
devtool: isDev ? 'inline-source-map' : 'source-map',
|
|
plugins: [
|
|
new webpack.DefinePlugin({
|
|
'process.env.SAPPER_TIMESTAMP': process.env.SAPPER_TIMESTAMP || Date.now()
|
|
})
|
|
]
|
|
}
|