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({
|
2024-07-04 11:32:10 -06:00
|
|
|
server: {
|
|
|
|
port: 8001
|
|
|
|
},
|
|
|
|
site: "https://limepot.xyz",
|
|
|
|
integrations: [mdx()]
|
|
|
|
});
|