Skip to main content

Working with the Design System

Linking the Strapi Design System

Follow these steps to use a local version of the Strapi design system with the Strapi monorepo

In your copy of the design system run yarn build to generate the bundle.

In the Strapi monorepo link your local copy of the design system with yarn link:

yarn link -r ../<relative-path-to-strapi-design-system>

Running yarn build in examples/getstarted should now use your local version of the design system.

To revert back to the released version of the design system use yarn unlink:

yarn unlink ../<relative-path-to-strapi-design-system>