refactor: moves apps outside of apps/ path
This commit is contained in:
parent
b2d1a5ae9e
commit
c85e2e2357
45 changed files with 4 additions and 3 deletions
24
www/astro.config.mjs
Normal file
24
www/astro.config.mjs
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
import { defineConfig } from 'astro/config';
|
||||
import vercel from '@astrojs/vercel';
|
||||
import db from '@astrojs/db';
|
||||
import auth from 'auth-astro';
|
||||
import remarkDirective from 'remark-directive';
|
||||
import remarkGfm from 'remark-gfm';
|
||||
import remarkSlug from 'remark-slug';
|
||||
import remarkSmartypants from 'remark-smartypants';
|
||||
import remarkAside from './src/plugins/remark-aside.ts';
|
||||
|
||||
export default defineConfig({
|
||||
output: 'static',
|
||||
adapter: vercel(),
|
||||
integrations: [db(), auth()],
|
||||
markdown: {
|
||||
remarkPlugins: [
|
||||
remarkGfm,
|
||||
remarkDirective,
|
||||
remarkAside,
|
||||
remarkSlug,
|
||||
remarkSmartypants
|
||||
]
|
||||
}
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue