Cyril Šebek
08e38d4d91
- Changed output to `hybrid` instead of `server` - Bugfixes to ShowcaseTabs (iamge sizing) - Changes due to hybrid rendering
55 lines
1.1 KiB
JavaScript
55 lines
1.1 KiB
JavaScript
import { defineConfig } from "astro/config";
|
|
import tailwind from "@astrojs/tailwind";
|
|
import mdx from "@astrojs/mdx";
|
|
import sitemap from "@astrojs/sitemap";
|
|
import node from "@astrojs/node";
|
|
import rehypePrettyCode from "rehype-pretty-code";
|
|
import rehypeSlug from "rehype-slug";
|
|
import react from "@astrojs/react";
|
|
|
|
// https://astro.build/config
|
|
export default defineConfig({
|
|
output: "hybrid",
|
|
adapter: node({
|
|
mode: "standalone",
|
|
}),
|
|
site: "https://cyrilsebek.cz",
|
|
integrations: [
|
|
tailwind({
|
|
applyBaseStyles: false,
|
|
}),
|
|
mdx({
|
|
syntaxHighlight: false,
|
|
rehypePlugins: [rehypeSlug, [rehypePrettyCode, { theme: "github-dark" }]],
|
|
}),
|
|
sitemap(),
|
|
react(),
|
|
],
|
|
i18n: {
|
|
locales: [
|
|
{
|
|
path: "cs",
|
|
codes: ["cs", "sk"],
|
|
},
|
|
{
|
|
path: "de",
|
|
codes: ["de", "gsw"],
|
|
},
|
|
{
|
|
path: "en",
|
|
codes: ["en"],
|
|
},
|
|
{
|
|
path: "fr",
|
|
codes: ["fr"],
|
|
},
|
|
],
|
|
defaultLocale: "en",
|
|
routing: "manual",
|
|
fallback: {
|
|
de: "en",
|
|
fr: "en",
|
|
},
|
|
},
|
|
});
|