1
Fork 0

Remove unused config

This commit is contained in:
KorbsStudio 2023-01-24 02:05:46 -05:00
parent de829a349e
commit c3139c1d0d
No known key found for this signature in database

View file

@ -1,19 +1,9 @@
import { defineConfig } from 'astro/config';
import mdx from '@astrojs/mdx';
import node from "@astrojs/node";
// https://astro.build/config
export default defineConfig({
integrations: [mdx()],
srcDir: './astro',
outDir: './app',
adapter: node({
mode: 'standalone'
}),
build: {
linkStyle: 'relative',
format: 'directory',
client: './client',
server: './server'
},
});