We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fde8434 commit bd5fe34Copy full SHA for bd5fe34
webpack.common.js
@@ -1,7 +1,7 @@
1
/* eslint-disable */
2
const path = require('path');
3
const ForkTsCheckerWebpackPlugin = require('fork-ts-checker-webpack-plugin');
4
-const { EnvironmentPlugin, LoaderOptionsPlugin } = require('webpack');
+const { EnvironmentPlugin } = require('webpack');
5
6
require('dotenv/config');
7
@@ -33,13 +33,5 @@ module.exports = {
33
clean: true,
34
publicPath: '/',
35
},
36
- plugins: [
37
- new ForkTsCheckerWebpackPlugin(),
38
- new EnvironmentPlugin(['REACT_APP_SERVER_URL']),
39
- new LoaderOptionsPlugin({
40
- options: {
41
- disableHostCheck: true,
42
- },
43
- }),
44
- ],
+ plugins: [new ForkTsCheckerWebpackPlugin(), new EnvironmentPlugin(['REACT_APP_SERVER_URL'])],
45
};
0 commit comments