Begin development
This commit is contained in:
commit
7fd01eaf43
12 changed files with 224 additions and 0 deletions
26
astro.config.mjs
Normal file
26
astro.config.mjs
Normal file
|
@ -0,0 +1,26 @@
|
|||
import { defineConfig } from 'astro/config';
|
||||
|
||||
// Adapters
|
||||
import node from '@astrojs/node';
|
||||
|
||||
// Integrations
|
||||
import keystatic from '@keystatic/astro';
|
||||
import mdx from '@astrojs/mdx';
|
||||
import partytown from '@astrojs/partytown';
|
||||
|
||||
export default defineConfig({
|
||||
site: 'docs.company.net',
|
||||
output: "hybrid",
|
||||
prefetch: true,
|
||||
adapter: node({
|
||||
mode: 'standalone',
|
||||
}),
|
||||
integrations: [mdx(), partytown()],
|
||||
server: {
|
||||
port: 2014,
|
||||
host: true
|
||||
},
|
||||
devToolbar: {
|
||||
enabled: false
|
||||
}
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue