From 482a04d7579e1b4d9385835a4ac0888459ea3e85 Mon Sep 17 00:00:00 2001 From: omuretsu <84951833+Snarling@users.noreply.github.com> Date: Fri, 7 Apr 2023 07:43:39 -0400 Subject: [PATCH] Fix broken devServer config --- webpack.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webpack.config.js b/webpack.config.js index fd0f3795b..82eb15af9 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -55,7 +55,7 @@ module.exports = (env, argv) => { const htmlConfig = { title: "Bitburner", template: "src/index.html", - filename: "../index.html", + filename: isDevServer ? "index.html" : "../index.html", favicon: "favicon.ico", googleAnalytics: { trackingId: "UA-100157497-1",