Storybook 附加组件 HTML 验证器
此附加组件在标签中提供组件 HTML 中所有 HTML 验证错误和警告的视图,W3C 验证器服务。
安装
npm i storybook-addon-html-validator-w3c
然后,在 .storybook/main.js
中将其注册为附加组件。
// .storybook/main.ts
// Replace your-framework with the framework you are using (e.g., react-webpack5, vue3-vite)
import type { StorybookConfig } from '@storybook/your-framework';
const config: StorybookConfig = {
// ...rest of config
addons: [
'@storybook/addon-essentials'
'storybook-addon-html-validator-w3c', // 👈 register the addon here
],
};
export default config;
完成...
检查 Storybook 面板附加组件中的组件。
想请我喝杯咖啡吗?
paypal: gsparihar28 👈 👈 👈 👈 👈 👈
它看起来怎么样?
发布
- npx auto create-labels
- npm run release (检查 2FA)