Skip to content

Commit

Permalink
fix(webpack): set publicPath to / in dev mode (#1415)
Browse files Browse the repository at this point in the history
Signed-off-by: Thuan Vo <[email protected]>
  • Loading branch information
tthvo authored Sep 20, 2024
1 parent e3388c5 commit 6aa3d35
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions webpack.dev.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,9 @@ module.exports = merge(common('development'), {
use: ['style-loader', 'css-loader']
}
]
},
output: {
publicPath: "/"
}
});

Expand Down

0 comments on commit 6aa3d35

Please sign in to comment.