Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

USF-922: Extending drop-ins with Commerce APIs #152

Merged
merged 5 commits into from
Dec 17, 2024
Merged
Show file tree
Hide file tree
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
7 changes: 4 additions & 3 deletions astro.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,6 @@ export default defineConfig({
trailingSlash: 'ignore',
outDir: './dist',




redirects: {
'/customize/design-tokens': '/developer/commerce/storefront/dropins/all/branding',
'/customize/enrich': '/developer/commerce/storefront/dropins/all/enriching',
Expand Down Expand Up @@ -184,6 +181,10 @@ export default defineConfig({
label: 'Styling',
link: '/dropins/all/styling/'
},
{
label: 'Slots',
link: '/dropins/all/slots/'
},
{
label: 'Layouts',
link: '/dropins/all/layouts/'
Expand Down
2 changes: 1 addition & 1 deletion src/content/docs/dropins/all/enriching.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ Content positioning is the placement of content and enrichment blocks on a webpa

### Slot API functions

The slots API provides several functions to add content within a drop-in component by specifying a slot name and a position. The slot API provides functions to add content to specific positions above and below the slot, such as prepend and append. See the full list of slot API functions here: [Extending drop-in components](/dropins/all/extending#big-picture)
The slots API provides several functions to add content within a drop-in component by specifying a slot name and a position. The slot API provides functions to add content to specific positions above and below the slot, such as prepend and append. See the full list of slot API functions here: [Understanding slots](/dropins/all/slots#big-picture)

</Vocabulary>

Expand Down
Loading