mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-10 19:57:17 +03:00
11 lines
204 B
JavaScript
11 lines
204 B
JavaScript
|
import { siteUrl } from './meta/dynamicMeta.mjs'
|
||
|
|
||
|
/** @type {import('next-sitemap').IConfig} */
|
||
|
const config = {
|
||
|
siteUrl,
|
||
|
generateRobotsTxt: true,
|
||
|
autoLastmod: false,
|
||
|
}
|
||
|
|
||
|
export default config
|