Skip to content
This repository was archived by the owner on Mar 13, 2025. It is now read-only.

Commit 5f3be68

Browse files
committed
CORE-419 fix webpack build
1 parent 1033c35 commit 5f3be68

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.nvmrc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
16.15.0
1+
21.6.0

webpack.config.js

+3-2
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,15 @@
22
const singleSpaDefaults = require("webpack-config-single-spa");
33
const HtmlWebpackPlugin = require("html-webpack-plugin");
44
const CopyWebpackPlugin = require("copy-webpack-plugin");
5-
const { merge } = require('webpack-merge');
5+
const { merge } = require("webpack-merge");
66

77
module.exports = (webpackConfigEnv) => {
88
const orgName = "topcoder";
99
const defaultConfig = singleSpaDefaults({
1010
orgName,
1111
projectName: "mfe-core",
1212
webpackConfigEnv,
13+
disableHtmlGeneration: true,
1314
});
1415

1516
return merge(defaultConfig, {
@@ -26,7 +27,7 @@ module.exports = (webpackConfigEnv) => {
2627
secure: false,
2728
},
2829
},
29-
index: '',
30+
index: "",
3031
},
3132
plugins: [
3233
new HtmlWebpackPlugin({

0 commit comments

Comments
 (0)