2023-08-13 16:35:03 -06:00
|
|
|
import { defineConfig } from 'astro/config';
|
2024-06-26 18:07:44 -06:00
|
|
|
import mdx from '@astrojs/mdx';
|
|
|
|
|
2023-08-13 16:35:03 -06:00
|
|
|
// https://astro.build/config
|
2023-08-13 16:45:39 -06:00
|
|
|
export default defineConfig({
|
2023-10-29 22:02:19 -06:00
|
|
|
server: { port: 8001 },
|
2024-06-26 18:07:44 -06:00
|
|
|
site: "https://limepot.xyz",
|
2024-06-26 18:14:49 -06:00
|
|
|
integrations: [mdx()],
|
2023-08-13 16:45:39 -06:00
|
|
|
});
|