Skip to content

Commit

Permalink
Merge pull request #46 from veronichka124/webpack-fix
Browse files Browse the repository at this point in the history
webpack fix
  • Loading branch information
veronichka124 authored Sep 16, 2024
2 parents fe12102 + f8fd4b5 commit 9e44138
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ module.exports = {
entry: "./src/main.js",
output: {
path: path.resolve(__dirname, "./dist"),
publicPath: "dist/",
publicPath: "/dist/",
filename: "build.js",
},
module: {
Expand Down Expand Up @@ -64,7 +64,7 @@ module.exports = {
plugins: [
// make sure to include the plugin for the magic
new VueLoaderPlugin(),
new HtmlWebpackPlugin({ template: "./index.html" }),
new HtmlWebpackPlugin({ template: "index.html" }),
],
};

Expand Down

0 comments on commit 9e44138

Please sign in to comment.