add configDiffPlugin

This commit is contained in:
Michael C
2022-10-07 17:12:16 -04:00
parent bb7f069254
commit bf8003891c
2 changed files with 69 additions and 1 deletions

View File

@@ -7,6 +7,7 @@ const BuildManifest = require('./webpack.manifest');
const srcDir = '../src/';
const fs = require("fs");
const ForkTsCheckerWebpackPlugin = require('fork-ts-checker-webpack-plugin');
const configDiffPlugin = require('./configDiffPlugin');
const edgeLanguages = [
"de",
@@ -116,6 +117,7 @@ module.exports = env => ({
browser: env.browser,
pretty: env.mode === "production",
stream: env.stream
})
}),
new configDiffPlugin()
]
});