mirror of
https://github.com/formbricks/formbricks.git
synced 2026-04-22 05:28:45 -05:00
5c265aacb9
Co-authored-by: ShubhamPalriwala <spalriwalau@gmail.com>
11 lines
174 B
TypeScript
11 lines
174 B
TypeScript
import { MetadataRoute } from "next";
|
|
|
|
export default function robots(): MetadataRoute.Robots {
|
|
return {
|
|
rules: {
|
|
userAgent: "*",
|
|
allow: "/",
|
|
},
|
|
};
|
|
}
|