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 }) ] });