0
0
Fork 0
This repository has been archived on 2024-05-09. You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.
bus-routes/.storybook/webpack.config.js
2017-09-14 15:13:57 -05:00

18 lines
625 B
JavaScript

// you can use this file to add your custom webpack plugins, loaders and anything you like.
// This is just the basic way to add additional webpack configurations.
// For more information refer the docs: https://storybook.js.org/configurations/custom-webpack-config
// IMPORTANT
// When you add this file, we won't add the default configurations which is similar
// to "React Create App". This only has babel loader to load JavaScript.
var webpackConfig = require('../config/webpack.config.dev.js')
module.exports = {
plugins: [
// your custom plugins
],
module: {
rules: webpackConfig.module.rules,
},
};