-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathastro.config.mjs
38 lines (33 loc) · 1012 Bytes
/
astro.config.mjs
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
32
33
34
35
36
37
38
import { defineConfig } from 'astro/config';
import netlify from "@astrojs/netlify/functions";
// import starlight from "@astrojs/starlight";
// https://astro.build/config
export default defineConfig({
output: "server",
adapter: netlify({
edgeMiddleware: true
}),
integrations: [
// starlight({
// title: 'Nurl Developers',
// description: 'The official community and resource to build extensions for Nurl.',
// locales: {
// root: {
// label: 'English',
// lang: 'en',
// }
// },
// social: {
// discord: 'https://discord.gg/YCP8NgrKES',
// github: 'https://github.com/nurl-inc',
// linkedin: 'https://www.linkedin.com/company/nurl',
// twitch: 'https://www.twitch.tv/nurl_app',
// twitter: 'https://twitter.com/nurl_inc',
// },
// editLink: {
// baseUrl: 'https://github.com/nurl-inc/developers/edit/main'
// },
// lastUpdated: true,
// })
]
});