Storybook (#122)

* adding storybook

* update webpack config

* Update package.json

* udpating build script
This commit is contained in:
Gavin Foster
2019-06-20 19:43:09 -05:00
committed by Benjamin Boudreau
parent 2c7653ba8b
commit 02d52921ad
7 changed files with 4572 additions and 2 deletions

View File

@@ -0,0 +1,13 @@
const path = require('path');
module.exports = {
module: {
rules: [
{
test: /\.scss$/,
use: ['style-loader', 'css-loader', 'sass-loader'],
include: path.resolve(__dirname, '../'),
},
],
},
}