Begin development

This commit is contained in:
Korbs 2024-06-05 20:48:11 -04:00
commit 7fd01eaf43
12 changed files with 224 additions and 0 deletions

26
astro.config.mjs Normal file
View 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
}
});