-
-
Notifications
You must be signed in to change notification settings - Fork 9.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #26860 from yuemori/fix-vite-builder-override-asse…
…tsinclude Vite: Merge assetsInclude property with Storybook default values (cherry picked from commit f6ecc28)
- Loading branch information
1 parent
6c048a2
commit 07fa9ab
Showing
2 changed files
with
17 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
import type { InlineConfig as ViteInlineConfig } from 'vite'; | ||
|
||
export function getAssetsInclude(config: ViteInlineConfig, newPath: string[]): (string | RegExp)[] { | ||
const { assetsInclude } = config; | ||
|
||
if (!assetsInclude) { | ||
return newPath; | ||
} | ||
|
||
if (Array.isArray(assetsInclude)) { | ||
return [...assetsInclude, ...newPath]; | ||
} else { | ||
return [assetsInclude, ...newPath]; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters