This commit is contained in:
Peter Dräxler 2021-09-29 15:11:48 +02:00
Родитель 9f55650923
Коммит e6823d0732
3 изменённых файлов: 4 добавлений и 2 удалений

Просмотреть файл

@ -9,7 +9,7 @@ module.exports = {
use: {
loader: 'babel-loader',
options: {
plugins: [require('./babel.plugin')],
plugins: [require('../src/babel.plugin')],
},
},
});

Просмотреть файл

@ -1,4 +1,6 @@
export { default as babelPlugin } from "../.storybook/babel.plugin";
// Temporary solution until this issue gets implemented:
// https://github.com/microsoft/fluentui-storybook-addons/issues/2
export { default as babelPlugin } from "./babel.plugin";
if (module && module.hot && module.hot.decline) {
module.hot.decline();