- Move web app into apps/web/ - Create packages/shared/ with shared types - Create plugins/decky-vault/ scaffold - Root package.json manages workspaces only
14 lines
339 B
TypeScript
14 lines
339 B
TypeScript
import type { MetadataRoute } from "next"
|
|
|
|
export default function robots(): MetadataRoute.Robots {
|
|
return {
|
|
rules: [
|
|
{
|
|
userAgent: "*",
|
|
allow: "/",
|
|
disallow: ["/manage", "/api"],
|
|
},
|
|
],
|
|
sitemap: "https://deckyvault.xyz/sitemap.xml",
|
|
}
|
|
} |