diff --git a/client/configuration/webpack/webpack.config.dev.js b/client/configuration/webpack/webpack.config.dev.js index 58428b0d..03e7246d 100644 --- a/client/configuration/webpack/webpack.config.dev.js +++ b/client/configuration/webpack/webpack.config.dev.js @@ -33,7 +33,7 @@ const devConfig = { options: { name: "static/assets/[name].[ext]", // (thuang): This is needed to make sure @font url path is '/static/assets/' - publicPath: "/", + publicPath: "..", }, }, ], diff --git a/client/configuration/webpack/webpack.config.prod.js b/client/configuration/webpack/webpack.config.prod.js index a236da0f..ee34773b 100644 --- a/client/configuration/webpack/webpack.config.prod.js +++ b/client/configuration/webpack/webpack.config.prod.js @@ -48,7 +48,7 @@ const prodConfig = { options: { name: "static/assets/[name]-[contenthash].[ext]", // (thuang): This is needed to make sure @font url path is '../static/assets/' - publicPath: "static/", + publicPath: "..", }, }, ],