Installation
This reference describes the configuration requirements to use code components in a React project.
Setup requirements
Webflow CLI
Install the Webflow CLI to bundle and publish your component library:
What you get:
@webflow/webflow-cli
- CLI used to publish components to Webflow@webflow/data-types
- TypeScript definitions for Webflow props@webflow/react
- React utilities for code components
See the CLI reference for publishing commands.
webflow.json
The webflow.json
file is used to configure your component library. Use this file to define the name of your library and the components that should be included in the library. Additionally, you can specify a custom webpack configuration file to use for bundling your components.
Create or update webflow.json
in the root of your project with the following configuration:
Configure environment variables
The Webflow CLI reads your .env
file to authenticate with Webflow and publish to the correct workspace. Add the following variables to your .env
file:
Enable code components in private beta
During the private beta, you must include the CODE_LIBRARIES
variable in your .env
file to enable code components.
Authentication
If you don’t have an API token set in your .env
file, the Webflow CLI will prompt you to authenticate with Webflow when you run the webflow library share
command. Once authenticated, the CLI will save the token to your .env
file.
Manual authentication
To manually authenticate with Webflow, run the webflow library share
command with the --api-token
option and include a Workspace API token in the command. This is useful when sharing your component library to a different workspace.
Workspace API token
The CLI publishes your component library to a Webflow workspace. To publish to the correct workspace, you must provide a workspace API token for authentication.
Workspace admin required
You must be a Workspace Admin to create a Workspace token.
To get your workspace API token:
- Open your workspace and navigate to Apps & Integrations.
- In the left sidebar. Click Manage
- Scroll to the bottom section labeled Workspace API Access
- Click Generate API Token and copy the token.
- Add the token to your
.env
file.
Security best practices
Never commit your .env
file to version control. Be sure to add .env
to your .gitignore
file.
Next steps
After configuration, you can: