mirror of
https://github.com/d0zingcat/NotionNext.git
synced 2026-05-13 23:16:47 +00:00
20 lines
317 B
JavaScript
20 lines
317 B
JavaScript
|
|
import fs from 'fs'
|
|
import BLOG from '@/blog.config'
|
|
|
|
export async function generateRobotsTxt() {
|
|
fs.mkdirSync('./public/rss', { recursive: true })
|
|
fs.writeFileSync('./public/robots.txt', `
|
|
# *
|
|
User-agent: *
|
|
Allow: /
|
|
|
|
# Host
|
|
Host: ${BLOG.LINK}
|
|
|
|
# Sitemaps
|
|
Sitemap: ${BLOG.LINK}/sitemap.xml
|
|
|
|
`)
|
|
}
|