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 youre 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: {},
  },
};