Skip to content

Instantly share code, notes, and snippets.

@kmaraz
Created December 7, 2019 14:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kmaraz/8c4ae70de24d9b11659713bd408dbd5f to your computer and use it in GitHub Desktop.
Save kmaraz/8c4ae70de24d9b11659713bd408dbd5f to your computer and use it in GitHub Desktop.
01: webpack config
const webpack = require('webpack');
const path = require('path');
const pjson = require('./package.json');
const WorkboxPlugin = require('workbox-webpack-plugin');
// Package version should be good enough if we want
// to destinguish between new worker versions.
// Some will use only `sw.js`. That's completely fine.
const workerName = `sw-${pjson.version}}.js`;
module.exports = (env, argv) => {
const config = {
devServer: {
allowedHosts: ['localhost'],
historyApiFallback: true,
hot: true,
// Service Workers are able to run with VALID certificates.
https: true,
port: 443,
public: 'localhost:443',
host: process.env.HOST || '0.0.0.0'
},
plugins: [
// WORKER_NAME will be used in our application.
new webpack.DefinePlugin({
WORKER_NAME: JSON.stringify(workerName)
}),
// Manifest file is used to cache and differentioate between asset versions.
new WorkboxPlugin.InjectManifest({
swSrc: path.resolve(__dirname, './workers/sw.js'),
swDest: workerName
})
],
};
return config;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment