Browse Source
Bugfix/missing assets in Storybook (#4324)
* fix(sb): add staticDirs config
* fix(sb): improve config type safety
* Update changelog
pull/4321/head^2
Ken Tandrian
2 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
13 additions and
0 deletions
-
CHANGELOG.md
-
libs/ui/.storybook/main.js
|
@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file. |
|
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), |
|
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), |
|
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). |
|
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). |
|
|
|
|
|
|
|
|
|
|
|
## Unreleased |
|
|
|
|
|
|
|
|
|
|
|
### Fixed |
|
|
|
|
|
|
|
|
|
|
|
- Added missing assets in _Storybook_ setup |
|
|
|
|
|
|
|
|
## 2.139.1 - 2025-02-15 |
|
|
## 2.139.1 - 2025-02-15 |
|
|
|
|
|
|
|
|
### Added |
|
|
### Added |
|
|
|
@ -1,9 +1,16 @@ |
|
|
|
|
|
/** @type {import('@storybook/angular').StorybookConfig} */ |
|
|
const config = { |
|
|
const config = { |
|
|
addons: ['@storybook/addon-essentials'], |
|
|
addons: ['@storybook/addon-essentials'], |
|
|
framework: { |
|
|
framework: { |
|
|
name: '@storybook/angular', |
|
|
name: '@storybook/angular', |
|
|
options: {} |
|
|
options: {} |
|
|
}, |
|
|
}, |
|
|
|
|
|
staticDirs: [ |
|
|
|
|
|
{ |
|
|
|
|
|
from: '../../../apps/client/src/assets', |
|
|
|
|
|
to: '/assets' |
|
|
|
|
|
} |
|
|
|
|
|
], |
|
|
stories: ['../**/*.stories.@(js|jsx|ts|tsx|mdx)'] |
|
|
stories: ['../**/*.stories.@(js|jsx|ts|tsx|mdx)'] |
|
|
}; |
|
|
}; |
|
|
|
|
|
|
|
|