Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
add raw-loader for markdown
  • Loading branch information
shawnbot committed Sep 12, 2017
commit 83d9422dc0e8656ba09afa9e4885a01e8b029853
8 changes: 6 additions & 2 deletions .storybook/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ const modulesPath = path.resolve(__dirname, "../modules")
module.exports = {
module: {
rules: [
{
test: /\.md$/,
use: "raw-loader",
},
{
test: /\.scss$/,
loaders: [
Expand All @@ -28,7 +32,7 @@ module.exports = {
},
],
include: modulesPath,
}
]
},
],
},
}