mirror of
https://github.com/vercel/commerce.git
synced 2025-07-28 20:51:23 +00:00
.vscode
app
[page]
_not-found
api
cart-checkout
content
login
my-page
product
search
error.tsx
favicon.ico
globals.css
layout.tsx
not-found.tsx
opengraph-image.tsx
page.tsx
robots.ts
sitemap.ts
components
fonts
framework
lib
.env.example
.env.production
.gitignore
.graphqlrc.yml
README.md
license.md
next.config.ts
package.json
pnpm-lock.yaml
postcss.config.mjs
redeploy.txt
tsconfig.json
14 lines
207 B
TypeScript
14 lines
207 B
TypeScript
import { baseUrl } from 'lib/utils';
|
|
|
|
export default function robots() {
|
|
return {
|
|
rules: [
|
|
{
|
|
userAgent: '*'
|
|
}
|
|
],
|
|
sitemap: `${baseUrl}/sitemap.xml`,
|
|
host: baseUrl
|
|
};
|
|
}
|