~repos /website

#astro#js#html#css

git clone https://pyrossh.dev/repos/website.git

木 Personal website of pyrossh. Built with astrojs, shiki, vite.



astro.config.mjs



// @ts-check
import { defineConfig } from 'astro/config';
import icon from "astro-icon";
import sitemap from '@astrojs/sitemap';
import expressiveCode from 'astro-expressive-code';
// https://astro.build/config
export default defineConfig({
site: 'https://pyrossh.dev',
trailingSlash: 'never',
output: 'static',
integrations: [icon(), sitemap(), expressiveCode()],
});