mirror of
https://gitlab.com/timvisee/send.git
synced 2024-11-10 05:02:45 +01:00
don't set cache header on serviceWorker.js
This commit is contained in:
parent
5677390a45
commit
1a78f57515
@ -19,8 +19,6 @@ function kv(f) {
|
||||
module.exports = function() {
|
||||
const files = fs.readdirSync(path.join(__dirname, '..', 'assets'));
|
||||
const code = `module.exports = {
|
||||
"package.json": require('../package.json'),
|
||||
"serviceWorker.js" : require('../app/serviceWorker.js'),
|
||||
${files.map(kv).join(',\n')}
|
||||
};`;
|
||||
return {
|
||||
|
12793
package-lock.json
generated
12793
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@ -18,8 +18,10 @@ routes(app);
|
||||
|
||||
app.use(
|
||||
express.static(path.resolve(__dirname, '../../dist/'), {
|
||||
setHeaders: function(res) {
|
||||
res.set('Cache-Control', 'public, max-age=31536000, immutable');
|
||||
setHeaders: function(res, path) {
|
||||
if (!/serviceWorker\.js$/.test(path)) {
|
||||
res.set('Cache-Control', 'public, max-age=31536000, immutable');
|
||||
}
|
||||
res.removeHeader('Pragma');
|
||||
}
|
||||
})
|
||||
|
@ -3,7 +3,7 @@ const webpack = require('webpack');
|
||||
const CopyPlugin = require('copy-webpack-plugin');
|
||||
const ManifestPlugin = require('webpack-manifest-plugin');
|
||||
const VersionPlugin = require('./build/version_plugin');
|
||||
const MiniCssExtractPlugin = require("mini-css-extract-plugin");
|
||||
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
|
||||
|
||||
const webJsOptions = {
|
||||
babelrc: false,
|
||||
@ -12,6 +12,18 @@ const webJsOptions = {
|
||||
plugins: ['yo-yoify']
|
||||
};
|
||||
|
||||
const serviceWorker = {
|
||||
target: 'webworker',
|
||||
entry: {
|
||||
serviceWorker: './app/serviceWorker.js'
|
||||
},
|
||||
output: {
|
||||
filename: '[name].js',
|
||||
path: path.resolve(__dirname, 'dist'),
|
||||
publicPath: '/'
|
||||
}
|
||||
};
|
||||
|
||||
const web = {
|
||||
target: 'web',
|
||||
entry: {
|
||||
@ -193,29 +205,19 @@ const web = {
|
||||
}
|
||||
};
|
||||
|
||||
const serviceWorker = {
|
||||
target: 'webworker',
|
||||
entry: {
|
||||
serviceWorker: './app/serviceWorker.js'
|
||||
},
|
||||
output: {
|
||||
filename: '[name].js',
|
||||
path: path.resolve(__dirname, 'dist'),
|
||||
publicPath: '/'
|
||||
}
|
||||
}
|
||||
|
||||
module.exports = (env, argv) => {
|
||||
module.exports = () => {
|
||||
//(env, argv) => {
|
||||
// TODO: why are styles not output in 'production' mode?
|
||||
const mode = 'development' //argv.mode || 'production';
|
||||
const mode = 'development'; //argv.mode || 'production';
|
||||
console.error(`mode: ${mode}`);
|
||||
web.mode = serviceWorker.mode = mode;
|
||||
if (mode === 'development') {
|
||||
web.devtool = 'inline-source-map';
|
||||
web.devServer.before = require('./server/bin/dev');
|
||||
web.entry.tests = ['./test/frontend/index.js'];
|
||||
// istanbul instruments the source for code coverage
|
||||
webJsOptions.plugins.push('istanbul');
|
||||
web.devServer.before = require('./server/bin/dev');
|
||||
web.entry.tests = ['./test/frontend/index.js'];
|
||||
web.devtool = 'inline-source-map';
|
||||
serviceWorker.devtool = 'inline-source-map';
|
||||
}
|
||||
return [web, serviceWorker]
|
||||
}
|
||||
return [serviceWorker, web];
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user