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 f67b338 commit de68785Copy full SHA for de68785
web/webpack.config.ts
@@ -24,8 +24,9 @@ const apps = glob
24
.sync("src/apps/*/entry/app-config.ts")
25
.map((path) => path.substring(9, path.indexOf("/", 9)));
26
27
-// eslint-disable-next-line @typescript-eslint/no-var-requires
28
-let bundleInfo: { version: string } = { version: require("./package.json").version as string };
+let bundleInfo: { version: string } = {
+ version: `v${require("./package.json").version as string}`, // eslint-disable-line @typescript-eslint/no-var-requires
29
+};
30
try {
31
bundleInfo = JSON.parse(readFileSync(".bundle-info.json").toString()) as typeof bundleInfo;
32
} catch (error) {
0 commit comments