·
4 commits
to main
since this release
Minor Changes
-
f71d7f4: Fix: the navbar fallback no longer overrides the auto-generated
/logo.svg
with the hardcoded<CiderpressLogo />wordmark. Whenlogois omitted, the
nav now shows the SVG written to the public dir by the banner module (derived
fromtitle). Sites that committed their ownpublic/logo.svgalready won
this round; sites that didn't were silently getting the ciderpress wordmark.The themed wordmark is still available as an opt-in:
import { CiderpressLogo } from "ciderpress"; export default defineConfig({ logo: ({ theme }) => <CiderpressLogo />, });
New: two top-level config fields for overriding auto-generated asset paths.
banner?: string— hero image used on the home page and workspace landing
pages. Defaults to/banner.svg.favicon?: string— favicon path. Defaults to/icon.svg. Distinct from
icon(the Iconify id for the inline topbar mark).
export default defineConfig({ banner: '/assets/hero.png', favicon: '/favicon.ico', })
Auto-generation and the
<!-- ciderpress-generated -->marker still carry the
default case — these fields are only needed to point at a different filename
or a CDN URL.
Patch Changes
- Updated dependencies [f71d7f4]
- @ciderpress/cli@1.0.0-rc.3
- @ciderpress/config@1.0.0-rc.3
- @ciderpress/ui@1.0.0-rc.3