fix: allow empty SITE_URL in CI
Some checks failed
deploy / build-and-deploy (push) Failing after 18s
Some checks failed
deploy / build-and-deploy (push) Failing after 18s
This commit is contained in:
@@ -6,6 +6,6 @@ import { defineConfig } from 'astro/config';
|
||||
|
||||
// https://astro.build/config
|
||||
export default defineConfig({
|
||||
site: process.env.SITE_URL ?? 'https://example.com',
|
||||
site: process.env.SITE_URL || 'https://example.com',
|
||||
integrations: [mdx(), sitemap()],
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user