-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathastro.config.mjs
More file actions
31 lines (21 loc) · 894 Bytes
/
astro.config.mjs
File metadata and controls
31 lines (21 loc) · 894 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// import { defineConfig } from 'astro/config';
// import tailwind from "@astrojs/tailwind";
// // https://astro.build/config
// export default defineConfig({
// integrations: [tailwind()]
// });
import { defineConfig } from 'astro/config';
import tailwind from "@astrojs/tailwind";
// export default /** @type {import('astro').AstroUserConfig} */ ({
// Enable the Preact renderer to support Preact JSX components.
// renderers: ['@astrojs/renderer-preact'],
export default defineConfig({
integrations: [tailwind()],
build: {
site: 'https://ashsimmonds.github.io/', // Your public domain, e.g.: https://my-site.dev/. Used to generate sitemaps and canonical URLs.
// sitemap: true, // Generate sitemap (set to "false" to disable)
// sitemapFilter: (page) => page !== 'https://ashsimmonds.github.io/homey/sitemap',
format: 'file',
base: '/homey',
},
});