~repos /website
git clone https://pyrossh.dev/repos/website.git
木 Personal website of pyrossh. Built with astrojs, shiki, vite.
astro.config.mjs
// @ts-checkimport { defineConfig } from 'astro/config';import icon from "astro-icon";import sitemap from '@astrojs/sitemap';import expressiveCode from 'astro-expressive-code';
// https://astro.build/configexport default defineConfig({ site: 'https://pyrossh.dev', trailingSlash: 'never', output: 'static', integrations: [icon(), sitemap(), expressiveCode()],});