Migration to v2
Deprecated Properties
Section titled “Deprecated Properties”baseUrl
Section titled “baseUrl”Starting from version 2.0.0 the baseUrl
property is deprecated.
Instead of the baseUrl
property, base
from the Astro Config is now used.
You can migrate like this:
<Breadcrumbs baseUrl="/page" /><Breadcrumbs />
import { defineConfig } from "astro/config";
export default defineConfig({ base: "/page",});
trailingSlash
Section titled “trailingSlash”Starting from version 2.0.0 the trailingSlash
property is deprecated.
Instead of the trailingSlash
property, trailingSlash
from the Astro Config is now used.
You can migrate like this:
<Breadcrumbs trailingSlash={true} /><Breadcrumbs />
import { defineConfig } from "astro/config";
export default defineConfig({ trailingSlash: "always",});