aboutsummaryrefslogtreecommitdiff
path: root/src/app/robots.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/app/robots.ts')
-rw-r--r--src/app/robots.ts11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/app/robots.ts b/src/app/robots.ts
new file mode 100644
index 0000000..4a2fe7a
--- /dev/null
+++ b/src/app/robots.ts
@@ -0,0 +1,11 @@
+import type { MetadataRoute } from 'next';
+
+export default function robots(): MetadataRoute.Robots {
+ return {
+ rules: {
+ userAgent: '*',
+ allow: '/',
+ },
+ sitemap: 'https://free-invoices.org/sitemap.xml',
+ };
+}