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: app:
title: 'Console' title: 'Console'
org': 'Laconic' org: 'Laconic'
theme: 'dark' theme: 'dark'
website: 'https://laconic.com' website: 'https://laconic.com'
publicUrl: '/console' 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> <head>
<meta charset="utf-8" /> <meta charset="utf-8" />
<title> <title>Laconic | Console</title>
<%= title %>
</title>
<link rel="preconnect" href="https://fonts.googleapis.com" /> <link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin /> <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link <link

View File

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