mirror of
https://github.com/xHyroM/website.git
synced 2024-11-10 01:38:05 +01:00
59 lines
1.4 KiB
TypeScript
59 lines
1.4 KiB
TypeScript
import { defineConfig } from "astro/config";
|
|
|
|
import tailwind from "@astrojs/tailwind";
|
|
|
|
// https://astro.build/config
|
|
import sitemap from "@astrojs/sitemap";
|
|
|
|
// https://astro.build/config
|
|
import compress from "astro-compress";
|
|
|
|
// https://astro.build/config
|
|
import preact from "@astrojs/preact";
|
|
|
|
// https://astro.build/config
|
|
import robotsTxt from "astro-robots-txt";
|
|
import minify from "./astro-integrations/minify";
|
|
|
|
import { dirname, resolve } from "node:path";
|
|
import { fileURLToPath } from "node:url";
|
|
const __dirname = dirname(fileURLToPath(import.meta.url));
|
|
|
|
// https://astro.build/config
|
|
|
|
// https://astro.build/config
|
|
export default defineConfig({
|
|
site: "https://xhyrom.dev/",
|
|
integrations: [
|
|
tailwind(),
|
|
sitemap(),
|
|
compress({
|
|
svg: false,
|
|
html: false,
|
|
}),
|
|
robotsTxt({
|
|
policy: [
|
|
{
|
|
userAgent: "*",
|
|
},
|
|
],
|
|
sitemap: true,
|
|
}),
|
|
minify(),
|
|
preact(),
|
|
],
|
|
vite: {
|
|
resolve: {
|
|
alias: {
|
|
"~": resolve(__dirname, "./src"),
|
|
"@docs": resolve(__dirname, "./docs"),
|
|
"@blog": resolve(__dirname, "./blog"),
|
|
"@pages": resolve(__dirname, "./src/pages"),
|
|
"@assets": resolve(__dirname, "./src/assets"),
|
|
"@scripts": resolve(__dirname, "./src/scripts"),
|
|
"@layouts": resolve(__dirname, "./src/layouts"),
|
|
"@components": resolve(__dirname, "./src/components"),
|
|
},
|
|
},
|
|
},
|
|
});
|