diff --git a/src/partials/navbar.html b/src/partials/navbar.html
index f25c7d7..d9ee2a0 100644
--- a/src/partials/navbar.html
+++ b/src/partials/navbar.html
@@ -16,7 +16,7 @@
webOS Homebrew
-
-
+
- Apps
- Develop
diff --git a/webpack.config.js b/webpack.config.js
index 82dc9c3..f7a463d 100644
--- a/webpack.config.js
+++ b/webpack.config.js
@@ -64,11 +64,16 @@ module.exports = {
},
// images
{
- test: /\.(png|svg|jpe?g|webp)$/i,
- type: 'asset/resource',
- generator: {
- filename: 'img/[name].[hash:8][ext]',
- },
+ oneOf: [
+ {
+ test: /\.(jpe?g|png|webp)$/i,
+ type: "asset/resource",
+ generator: {
+ filename: 'img/[name].[hash:8][ext]',
+ }
+ },
+ {test: /\.(svg)$/i, type: "asset/inline"},
+ ],
use: [
{
loader: ImageMinimizerPlugin.loader,