Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions docs/rspress.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ import { pluginLlms } from '@rspress/plugin-llms';
export default defineConfig({
root: path.join(__dirname, 'docs'),
title: 'CodingScaffold',
// GitHub Pages serves this project at https://jrs1986.github.io/CodingScaffold/.
// Without `base`, rspress emits asset URLs at /static/... which resolve to the
// jrs1986.github.io apex and 404, leaving the deployed site unstyled. The trailing
// slash matters — rspress normalizes URLs against it.
base: '/CodingScaffold/',
builderConfig: {
server: {
host: '127.0.0.1',
Expand Down
Loading