web-infra-dev / rspress

🦀💨 A fast Rspack-based static site generator.
https://rspress.dev
MIT License
1.39k stars 126 forks source link

[Bug]: `rspress dev` does not update navbar item title when changing H1 inside doc #1439

Open o-l-a-v opened 1 week ago

o-l-a-v commented 1 week ago

Version

Details

  1. Run rspress live with pnpm rspress dev
  2. Change # Title of a doc, say from "Title" to "Title 2". Save.
  3. New title is not reflected to navbar.

Image

Fix:

  1. CTRL + C to stop rspress live view.
  2. pnpm rspress dev to start live view again.
  3. New title is reflected in navbar.

Image

Reproduce link

See details

Reproduce Steps

See details

Timeless0911 commented 1 week ago

Yeah, we currently only support sidebar HMR when we change _meta.json, so you can config the overview page title in label option at _meta.json.

{
  "type": "file",
  "name": "index",
  "label": "API Overview"
}