Astro使用记录

Astro使用记录

学习Astro
2025/12/25

特殊文件/文件夹


TODO 应该还有没有用到文件和文件夹

  1. public 不会构建,原样访问的静态资源
  2. src/pages/

问题


GitPage上的路径非常反人类,只能用相对路径,导致本地运行没毛病一上传就找不到路径。
css简直不要太恶心!

  1. 路径一定不能 / 开头
  2. astro.config.mjs 里面一定要检查环境比如
import { defineConfig } from "astro/config";

const isProd = process.env.NODE_ENV === "production";

export default defineConfig({
  site: "https://atikou.github.io",
  base: isProd ? "/Projects/" : "/",
});