chore: remove storybook (#1269)

* chore: remove storybook

* chore: add in missing deps
This commit is contained in:
Tobias Åström
2023-05-15 13:00:09 +02:00
committed by GitHub
parent e41893a344
commit 626ff048f7
5 changed files with 253 additions and 6697 deletions

View File

@@ -0,0 +1,6 @@
module.exports = ({ config }) => {
const jsRule = config.module.rules.find((rule) => rule.test.test('.js'));
jsRule.exclude = /node_modules/;
return config;
};