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

docs: add banner image #2

Merged
merged 2 commits into from
May 17, 2024
Merged
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
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Storybook × Rsbuild

![Storybook Rsbuild](https://github.com/rspack-contrib/storybook-rsbuild/assets/7237365/00165054-9e3e-4a15-8a99-27985989b9d2)

The repository contains the Storybook Rsbuild builder and framework integrations for UI frameworks.

| package | description |
Expand Down Expand Up @@ -29,7 +31,7 @@ In Storybook v8, you don't need to manually install storybook-builder-rsbuild, i
const config: StorybookConfig = {
framework: 'storybook-react-rsbuild',
rsbuildFinal: (config) => {
// Customize the final webpack config here
// Customize the final Rsbuild config here
return config;
},
};
Expand All @@ -53,7 +55,7 @@ You're all set now. You could also checkout the example in [sandboxes/react-rsbu
const config: StorybookConfig = {
framework: 'storybook-vue3-rsbuild',
rsbuildFinal: (config) => {
// Customize the final webpack config here
// Customize the final Rsbuild config here
return config;
},
};
Expand Down