UNPKG

material-ui-image

Version:
17 lines (13 loc) 445 B
const { createConfig } = require('@webpack-blocks/webpack') const babel = require('@webpack-blocks/babel') const path = require('path') const webpackConfig = createConfig([ babel() ]) webpackConfig.resolve.alias = {} webpackConfig.resolve.alias['rsg-components/Wrapper'] = path.join(__dirname, 'src/styleguide/Wrapper') module.exports = { skipComponentsWithoutExample: true, components: 'src/components/**/[A-Z]*.js', webpackConfig }