chore: fix public dirs
continuous-integration/drone/push Build is failing Details

This commit is contained in:
Kieran 2023-11-21 14:21:47 +00:00
parent fbd479b4fb
commit 756e50f866
Signed by: Kieran
GPG Key ID: DE71CEB3925BE941
15 changed files with 23 additions and 1 deletions

View File

@ -6,6 +6,7 @@
"nip05Domain": "snort.social",
"favicon": "public/favicon.ico",
"appleTouchIconUrl": "/nostrich_512.png",
"publicDir": "public/snort",
"httpCache": "",
"animalNamePlaceholders": false,
"defaultZapPoolFee": 0.5,

View File

@ -6,6 +6,7 @@
"nip05Domain": "iris.to",
"favicon": "public/iris/favicon.ico",
"appleTouchIconUrl": "/img/apple-touch-icon.png",
"publicDir": "public/iris",
"httpCache": "https://api.iris.to",
"animalNamePlaceholders": true,
"features": {

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.2 KiB

View File

@ -0,0 +1,16 @@
{
"applinks": {
"details": [
{
"appIDs": [
"snort.social.app"
]
}
]
},
"webcredentials": {
"apps": [
"snort.social.app"
]
}
}

View File

Before

Width:  |  Height:  |  Size: 146 KiB

After

Width:  |  Height:  |  Size: 146 KiB

View File

Before

Width:  |  Height:  |  Size: 528 KiB

After

Width:  |  Height:  |  Size: 528 KiB

View File

Before

Width:  |  Height:  |  Size: 771 KiB

After

Width:  |  Height:  |  Size: 771 KiB

View File

@ -0,0 +1,3 @@
# https://www.robotstxt.org/robotstxt.html
User-agent: *
Disallow:

View File

@ -1,5 +1,5 @@
import { MouseEventHandler } from "react";
import IconsSvg from "/icons.svg?url";
import IconsSvg from "@/icons.svg";
export interface IconProps {
name: string;

View File

Before

Width:  |  Height:  |  Size: 102 KiB

After

Width:  |  Height:  |  Size: 102 KiB

View File

@ -33,6 +33,7 @@ export default defineConfig({
build: {
outDir: "build",
},
publicDir: appConfig.get("publicDir"),
resolve: {
alias: {
"@": "/src",