From c593d3bce312178b5493b808be614cb97e0c423c Mon Sep 17 00:00:00 2001 From: omuretsu <84951833+Snarling@users.noreply.github.com> Date: Fri, 6 Jan 2023 18:20:29 -0500 Subject: [PATCH] better dev server fix webmanifest was still erroring --- webpack.config.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/webpack.config.js b/webpack.config.js index 6dee88c9c..d5273292b 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -33,8 +33,8 @@ module.exports = (env, argv) => { stats: statsConfig, }, static: { - directory: path.join(__dirname, "dist", "ext"), - publicPath: '/dist/ext', + directory: path.join(__dirname, "dist"), + publicPath: "/dist", }, };