Skip to content

Commit

Permalink
Fix webpack.dev contentBase path
Browse files Browse the repository at this point in the history
  • Loading branch information
kidroca committed Mar 29, 2022
1 parent 03c02ff commit c1f3335
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config/webpack/webpack.dev.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ module.exports = (env = {}) => {
mode: 'development',
devtool: 'inline-source-map',
devServer: {
contentBase: path.join(__dirname, '../dist'),
contentBase: path.join(__dirname, '../../dist'),
hot: true,
...proxySettings,
historyApiFallback: true,
Expand Down

0 comments on commit c1f3335

Please sign in to comment.