chore: fix public dirs
@ -6,6 +6,7 @@
|
||||
"nip05Domain": "snort.social",
|
||||
"favicon": "public/favicon.ico",
|
||||
"appleTouchIconUrl": "/nostrich_512.png",
|
||||
"publicDir": "public/snort",
|
||||
"httpCache": "",
|
||||
"animalNamePlaceholders": false,
|
||||
"defaultZapPoolFee": 0.5,
|
||||
|
@ -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": {
|
||||
|
Before Width: | Height: | Size: 3.2 KiB |
@ -0,0 +1,16 @@
|
||||
{
|
||||
"applinks": {
|
||||
"details": [
|
||||
{
|
||||
"appIDs": [
|
||||
"snort.social.app"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"webcredentials": {
|
||||
"apps": [
|
||||
"snort.social.app"
|
||||
]
|
||||
}
|
||||
}
|
Before Width: | Height: | Size: 146 KiB After Width: | Height: | Size: 146 KiB |
Before Width: | Height: | Size: 528 KiB After Width: | Height: | Size: 528 KiB |
Before Width: | Height: | Size: 771 KiB After Width: | Height: | Size: 771 KiB |
3
packages/app/public/snort/robots.txt
Normal file
@ -0,0 +1,3 @@
|
||||
# https://www.robotstxt.org/robotstxt.html
|
||||
User-agent: *
|
||||
Disallow:
|
@ -1,5 +1,5 @@
|
||||
import { MouseEventHandler } from "react";
|
||||
import IconsSvg from "/icons.svg?url";
|
||||
import IconsSvg from "@/icons.svg";
|
||||
|
||||
export interface IconProps {
|
||||
name: string;
|
||||
|
Before Width: | Height: | Size: 102 KiB After Width: | Height: | Size: 102 KiB |
@ -33,6 +33,7 @@ export default defineConfig({
|
||||
build: {
|
||||
outDir: "build",
|
||||
},
|
||||
publicDir: appConfig.get("publicDir"),
|
||||
resolve: {
|
||||
alias: {
|
||||
"@": "/src",
|
||||
|