Skip to content

Commit

Permalink
adjust app.config
Browse files Browse the repository at this point in the history
  • Loading branch information
bjesus committed Oct 6, 2024
1 parent 77e4021 commit 8d6174a
Showing 1 changed file with 6 additions and 8 deletions.
14 changes: 6 additions & 8 deletions app.config.ts
Original file line number Diff line number Diff line change
@@ -1,20 +1,18 @@
export default defineAppConfig({
title: "TeaTime",
icon: "🫖",
ipfsGateways: [
{
value: "ipfs.io",
ipfsGateways: {
"ipfs.io": {
name: "IPFS.io",
description: "IPFS official gateway",
info: "https://docs.ipfs.tech/concepts/ipfs-gateway/",
url: "https://ipfs.io/{CID}?filename={filename}",
url: "https://ipfs.io/${cid}?filename=${filename}",
},
{
value: "localhost",
localhost: {
name: "Local IPFS Gateway",
description: "Local IPFS gateway",
info: "https://docs.ipfs.tech/install/ipfs-desktop/",
url: "http://{CID}.ipfs.localhost:8080/?filename={filename}",
url: "http://${cid}.ipfs.localhost:8080/?filename=${filename}",
},
],
},
});

0 comments on commit 8d6174a

Please sign in to comment.