-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
cleanup unused root entries, add preset entry
- Loading branch information
Showing
5 changed files
with
20 additions
and
7 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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
This file was deleted.
Oops, something went wrong.
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
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,14 @@ | ||
// You can use presets to augment the Storybook configuration | ||
// You rarely want to do this in addons, | ||
// so often you want to delete this file and remove the reference to it in package.json#exports and package.json#bunder.nodeEntries | ||
// Read more about presets at https://storybook.js.org/docs/addons/writing-presets | ||
|
||
export const viteFinal = async (config: any) => { | ||
console.log("This addon is augmenting the Vite config"); | ||
return config; | ||
}; | ||
|
||
export const webpack = async (config: any) => { | ||
console.log("This addon is augmenting the Webpack config"); | ||
return config; | ||
}; |