From 28488d8febf71d2804bb29846cff833f622255f1 Mon Sep 17 00:00:00 2001 From: Jordan Eldredge Date: Fri, 16 Mar 2018 09:15:19 -0700 Subject: [PATCH] Fix lint errors --- config/webpack.prod.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/webpack.prod.js b/config/webpack.prod.js index b4997d5c..179ab4a6 100644 --- a/config/webpack.prod.js +++ b/config/webpack.prod.js @@ -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 }) ] });