material-ui-image
Version:
Material style image with loading animation
17 lines (13 loc) • 445 B
JavaScript
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
}