Create a separate docs project with Astro and MDX so product documentation can evolve independently from the Electron app while supporting the planned TS/MDX migration.
8 lines
197 B
JavaScript
8 lines
197 B
JavaScript
import { defineConfig } from 'astro/config';
|
|
import mdx from '@astrojs/mdx';
|
|
|
|
export default defineConfig({
|
|
integrations: [mdx()],
|
|
site: 'https://github.com/Sucukdeluxe/Twitch-VOD-Manager'
|
|
});
|