Skip to content

Commit

Permalink
Fix images on build
Browse files Browse the repository at this point in the history
  • Loading branch information
jacbn committed Mar 28, 2024
1 parent 5fadf1a commit 742c490
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
1 change: 0 additions & 1 deletion src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,5 @@
<title>Jacob Brown</title>
</head>
<body>
<script src="/src/main.js"></script>
</body>
</html>
7 changes: 6 additions & 1 deletion webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,12 @@ module.exports = {
test: /\.css$/,
use: [
"style-loader",
"css-loader"
{
loader: "css-loader",
options: {
url: false,
},
}
],
exclude: /\.module\.css$/,
},
Expand Down

0 comments on commit 742c490

Please sign in to comment.