22 lines
465 B
JavaScript
22 lines
465 B
JavaScript
// @ts-check
|
|
|
|
import mdx from '@astrojs/mdx';
|
|
import sitemap from '@astrojs/sitemap';
|
|
import { defineConfig } from 'astro/config';
|
|
|
|
// https://astro.build/config
|
|
export default defineConfig({
|
|
site: 'https://seans.cloud',
|
|
integrations: [mdx(), sitemap()],
|
|
trailingSlash: "always",
|
|
vite: {
|
|
server: {
|
|
allowedHosts: [
|
|
"seans.cloud",
|
|
"www.seans.cloud",
|
|
".seans.cloud", // allows all subdomains too
|
|
],
|
|
},
|
|
},
|
|
});
|