mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
The builder allows to add a "architect" in angular.json to start storybook config ex : ``` "storybook": { "builder": "@storybook/angular:start-storybook", "options": { "browserTarget": "angular-cli:build", "port": 4400 } ``` cmd : `ng run angular-cli:storybook` With this solution it is possible to have several angular projects using different assets and style
14 lines
366 B
TypeScript
14 lines
366 B
TypeScript
import { CLIOptions, LoadOptions, BuilderOptions } from '@storybook/core-common';
|
|
|
|
export type StandaloneOptions = Partial<
|
|
CLIOptions &
|
|
LoadOptions &
|
|
BuilderOptions & {
|
|
angularBrowserTarget: string;
|
|
}
|
|
>;
|
|
|
|
declare module '@storybook/angular/standalone' {
|
|
export default function buildStandalone(options: StandaloneOptions): Promise<unknown>;
|
|
}
|