Remove babel-loader shenanigans

This commit is contained in:
Michael Shilman 2022-12-14 19:47:28 +08:00
parent 6f66a071bf
commit 1b9a5570a9
2 changed files with 0 additions and 4 deletions

View File

@ -28,8 +28,6 @@ async function webpack(
typeof createCompiler typeof createCompiler
>[0] */ >[0] */
) { ) {
const resolvedBabelLoader = await options.presets.apply('babelLoaderRef');
const { module = {} } = webpackConfig; const { module = {} } = webpackConfig;
// it will reuse babel options that are already in use in storybook // it will reuse babel options that are already in use in storybook

View File

@ -29,7 +29,5 @@ export const babel = async (config: any, options: any) => ({
], ],
}); });
export const babelLoaderRef = () => require.resolve('babel-loader');
export const previewMainTemplate = () => export const previewMainTemplate = () =>
require.resolve('@storybook/builder-webpack5/templates/preview.ejs'); require.resolve('@storybook/builder-webpack5/templates/preview.ejs');