mirror of
https://github.com/Gitlawb/openclaude.git
synced 2026-08-24 02:34:15 -05:00
* fix(web): link release notes to GitHub * test(web): verify release link safety contract
12 lines
304 B
JavaScript
12 lines
304 B
JavaScript
import { defineConfig } from 'astro/config'
|
|
import sitemap from '@astrojs/sitemap'
|
|
|
|
export default defineConfig({
|
|
site: 'https://openclaude.gitlawb.com',
|
|
trailingSlash: 'always',
|
|
redirects: {
|
|
'/changelog/': 'https://github.com/Gitlawb/openclaude/releases',
|
|
},
|
|
integrations: [sitemap()],
|
|
})
|