From 1961c551ba0212c46dfa6b1345b2f53ee908870f Mon Sep 17 00:00:00 2001 From: Morten Olsen Date: Sat, 22 Aug 2020 22:56:26 +0200 Subject: [PATCH] update --- webpack.config.ts | 5 ----- 1 file changed, 5 deletions(-) diff --git a/webpack.config.ts b/webpack.config.ts index b11e9d0..5b65182 100644 --- a/webpack.config.ts +++ b/webpack.config.ts @@ -1,7 +1,6 @@ import webpack, { Configuration } from 'webpack'; import HtmlWebpackPlugin from 'html-webpack-plugin'; import WorkboxWebpackPlugin from 'workbox-webpack-plugin'; -import SriPlugin from 'webpack-subresource-integrity'; import path from 'path'; const data = require('./data.json'); @@ -30,10 +29,6 @@ const config: Configuration = { new webpack.DefinePlugin({ __DEV__: JSON.stringify(__DEV__), }), - new SriPlugin({ - hashFuncNames: ['sha256', 'sha384'], - enabled: !__DEV__, - }), new HtmlWebpackPlugin({ title: `Parcel for ${data.username}`, minify: true,