Fix lint errors

This commit is contained in:
Jordan Eldredge 2018-03-16 09:15:19 -07:00
parent 25e64e5219
commit 28488d8feb

View file

@ -1,7 +1,7 @@
const webpack = require("webpack");
const merge = require("webpack-merge");
const common = require("./webpack.common.js");
const workboxPlugin = require("workbox-webpack-plugin");
const common = require("./webpack.common.js");
const config = merge(common, {
devtool: "source-map",
@ -20,7 +20,7 @@ const config = merge(common, {
new workboxPlugin.GenerateSW({
swDest: "service-worker.js",
clientsClaim: true,
skipWaiting: true,
skipWaiting: true
})
]
});