2022-12-02 11:21:18 +01:00
|
|
|
import { defineConfig } from "astro/config";
|
|
|
|
|
2022-12-02 17:29:11 +01:00
|
|
|
// https://github.com/alexandre-fernandez/astro-i18n
|
|
|
|
import i18n from "astro-i18n";
|
2022-12-02 11:21:18 +01:00
|
|
|
|
|
|
|
// https://astro.build/config
|
2022-12-02 17:29:11 +01:00
|
|
|
import image from "@astrojs/image";
|
2022-12-02 11:21:18 +01:00
|
|
|
import mdx from "@astrojs/mdx";
|
|
|
|
|
|
|
|
// https://astro.build/config
|
|
|
|
export default defineConfig({
|
2022-12-02 17:29:11 +01:00
|
|
|
integrations: [i18n(), image(), mdx()],
|
|
|
|
});
|