add favicon, hard code site title

This commit is contained in:
Monkey 2024-08-09 10:16:13 -04:00
parent fc76478b8a
commit b1f95b488c
4 changed files with 3 additions and 4 deletions

View File

@ -5,7 +5,7 @@
app:
title: 'Console'
org': 'Laconic'
org: 'Laconic'
theme: 'dark'
website: 'https://laconic.com'
publicUrl: '/console'

BIN
public/favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

View File

@ -3,9 +3,7 @@
<head>
<meta charset="utf-8" />
<title>
<%= title %>
</title>
<title>Laconic | Console</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link

View File

@ -14,6 +14,7 @@ module.exports = merge(commonConfig, {
// https://github.com/jantimon/html-webpack-plugin#options
new HtmlWebPackPlugin({
template: './public/index.html',
favicon: './public/favicon.ico',
templateParameters: {
title: 'Console'
}