Merge pull request #14840 from inokawa/patch-1

Remove unused import from snippet
This commit is contained in:
Michael Shilman 2021-05-07 11:39:26 +08:00 committed by GitHub
commit 831226ef18
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,8 +1,6 @@
```js
// .storybook/main.js
const path = require('path');
// your app's webpack.config.js
const custom = require('../webpack.config.js');
@ -11,4 +9,4 @@ module.exports = {
return { ...config, module: { ...config.module, rules: custom.module.rules } };
},
};
```
```