From c3139c1d0d289db84fe627eecf6314d8bc9ea3fc Mon Sep 17 00:00:00 2001 From: KorbsStudio Date: Tue, 24 Jan 2023 02:05:46 -0500 Subject: [PATCH] Remove unused config --- astro.config.mjs | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/astro.config.mjs b/astro.config.mjs index b3c9872..e3cfe09 100755 --- a/astro.config.mjs +++ b/astro.config.mjs @@ -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' - }, }); \ No newline at end of file