migrate to astro
This commit is contained in:
parent
82150df591
commit
5e67b2bb0d
135 changed files with 5886 additions and 8330 deletions
26
astro.config.mjs
Normal file
26
astro.config.mjs
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
// @ts-check
|
||||
import { defineConfig } from "astro/config";
|
||||
import mdx from "@astrojs/mdx";
|
||||
import sitemap from "@astrojs/sitemap";
|
||||
import remarkEmoji from "remark-emoji";
|
||||
|
||||
import tailwind from "@astrojs/tailwind";
|
||||
|
||||
import icon from "astro-icon";
|
||||
|
||||
// https://astro.build/config
|
||||
export default defineConfig({
|
||||
prefetch: {
|
||||
defaultStrategy: "hover",
|
||||
prefetchAll: true,
|
||||
},
|
||||
site: "https://daichendt.one",
|
||||
integrations: [
|
||||
mdx({
|
||||
remarkPlugins: [remarkEmoji],
|
||||
}),
|
||||
sitemap(),
|
||||
tailwind(),
|
||||
icon(),
|
||||
],
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue