aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgabrielgio <gabriel.giovanini@pm.me>2022-04-18 15:34:50 +0200
committergabrielgio <gabriel.giovanini@pm.me>2022-04-18 15:34:50 +0200
commitfaf7150b5ff5de8d99c6ad495d53b10bcae3f7e3 (patch)
tree991d9b48bdeb642c0904cf7c21d8038f4e9b7a76
parentfef8990a818386a68915ef2272ea8a33b5cfcb04 (diff)
downloadgenpass-faf7150b5ff5de8d99c6ad495d53b10bcae3f7e3.tar.gz
genpass-faf7150b5ff5de8d99c6ad495d53b10bcae3f7e3.tar.bz2
genpass-faf7150b5ff5de8d99c6ad495d53b10bcae3f7e3.zip
feat: Remove WIP and add favicon
-rw-r--r--www/favicon.icobin0 -> 2790 bytes
-rw-r--r--www/index.html2
-rw-r--r--www/webpack.config.js2
3 files changed, 2 insertions, 2 deletions
diff --git a/www/favicon.ico b/www/favicon.ico
new file mode 100644
index 0000000..68ae661
--- /dev/null
+++ b/www/favicon.ico
Binary files differ
diff --git a/www/index.html b/www/index.html
index 0b4a5b5..8b67392 100644
--- a/www/index.html
+++ b/www/index.html
@@ -4,7 +4,7 @@
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link type="text/css" rel="stylesheet" href="/bulma.min.css">
- <title>[WIP] Password generator</title>
+ <title>Password generator</title>
</head>
<body>
<div class='container hero is-fullheight'>
diff --git a/www/webpack.config.js b/www/webpack.config.js
index 98cfec8..445b6e2 100644
--- a/www/webpack.config.js
+++ b/www/webpack.config.js
@@ -9,6 +9,6 @@ module.exports = {
},
mode: "development",
plugins: [
- new CopyWebpackPlugin(['index.html', 'bulma.min.css'])
+ new CopyWebpackPlugin(['index.html', 'bulma.min.css', 'favicon.ico'])
],
};