feat; add bg image

This commit is contained in:
Mike 2023-12-20 09:14:18 -05:00
parent f6f084fa5d
commit 9e81ce23d8
3 changed files with 6 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 977 KiB

View file

@ -8,6 +8,8 @@ body, html {
margin: 0;
padding: 0;
font-size: var(--font-size);
background: url('./background.jpg');
background-size: cover;
}
header {

View file

@ -26,6 +26,10 @@ module.exports = {
test: /\.css$/i,
use: ['style-loader', 'css-loader'],
},
{
test: /\.(png|svg|jpg|jpeg|gif)$/i,
type: 'asset/resource',
}
],
},
};