From 625b91794916d54d20a1772063519b2bae021601 Mon Sep 17 00:00:00 2001 From: Daniel Ledda Date: Sun, 20 Mar 2022 21:26:18 +0100 Subject: [PATCH] fixed webpack build public path so that all loaders work --- webpack.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webpack.config.js b/webpack.config.js index 7ae6090..5d8c089 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -50,7 +50,7 @@ const webpackConfig = { output: { filename: "bundle.js", - publicPath: "/static/", + publicPath: "./static/", path: path.resolve(__dirname, "./public/static"), },