add favicon and manifest, rename package, rename build folder

This commit is contained in:
weboko 2023-01-26 02:08:33 +01:00
parent d99474ab5e
commit 2bb7e88c87
No known key found for this signature in database
5 changed files with 21 additions and 2 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

View File

@ -0,0 +1,19 @@
{
"name": "Waku NoiseRTC",
"description": "Example showing WebRTC with Waku Noise.",
"icons": [
{
"src": "favicon.ico",
"sizes": "64x64 32x32 24x24 16x16",
"type": "image/x-icon"
},
{
"src": "favicon.png",
"type": "image/png",
"sizes": "192x192"
}
],
"display": "standalone",
"theme_color": "#ffffff",
"background_color": "#ffffff"
}

View File

@ -1,5 +1,5 @@
{
"name": "@waku/noise-example",
"name": "@waku/noise-rtc",
"private": true,
"version": "0.1.0",
"description": "",

View File

@ -4,7 +4,7 @@ const path = require("path");
module.exports = {
entry: "./index.js",
output: {
path: path.resolve(__dirname, "dist"),
path: path.resolve(__dirname, "build"),
filename: "index.js",
},
experiments: {