@histoire/shared 0.10.5 → 0.10.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/types/config.d.ts +4 -0
- package/package.json +1 -1
- package/src/types/config.ts +4 -0
package/dist/types/config.d.ts
CHANGED
|
@@ -145,6 +145,10 @@ export interface HistoireConfig {
|
|
|
145
145
|
* Vite config override
|
|
146
146
|
*/
|
|
147
147
|
vite?: ViteConfig | ((config: ViteConfig, env: ViteConfigEnv) => void | ViteConfig | Promise<void | ViteConfig>);
|
|
148
|
+
/**
|
|
149
|
+
* Remove those plugins from the Vite configuration
|
|
150
|
+
*/
|
|
151
|
+
viteIgnorePlugins?: string[];
|
|
148
152
|
/**
|
|
149
153
|
* Transpile dependencies when collecting stories on Node.js
|
|
150
154
|
*/
|
package/package.json
CHANGED
package/src/types/config.ts
CHANGED
|
@@ -154,6 +154,10 @@ export interface HistoireConfig {
|
|
|
154
154
|
* Vite config override
|
|
155
155
|
*/
|
|
156
156
|
vite?: ViteConfig | ((config: ViteConfig, env: ViteConfigEnv) => void | ViteConfig | Promise<void | ViteConfig>)
|
|
157
|
+
/**
|
|
158
|
+
* Remove those plugins from the Vite configuration
|
|
159
|
+
*/
|
|
160
|
+
viteIgnorePlugins?: string[]
|
|
157
161
|
/**
|
|
158
162
|
* Transpile dependencies when collecting stories on Node.js
|
|
159
163
|
*/
|