mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 04:41:16 +08:00
Storybook for Preact
Requirements
Getting Started
In a project without Storybook
Follow the prompts after running this command in your Preact project's root directory:
npx storybook@next init
More on getting started with Storybook
In a project with Storybook
This framework is designed to work with Storybook 7. If you’re not already using v7, upgrade with this command:
npx storybook@next upgrade --prerelease
Manual migration
Install the framework:
yarn add --dev @storybook/preact-vite@next
Update your main.js
to change the framework property:
// .storybook/main.js
export default {
// ...
framework: {
name: '@storybook/preact-vite', // <- Change this
options: {},
},
};