about summary refs log tree commit diff
path: root/storybook/webpack.config.js
diff options
context:
space:
mode:
Diffstat (limited to 'storybook/webpack.config.js')
-rw-r--r--storybook/webpack.config.js13
1 files changed, 13 insertions, 0 deletions
diff --git a/storybook/webpack.config.js b/storybook/webpack.config.js
new file mode 100644
index 000000000..0ce563e1a
--- /dev/null
+++ b/storybook/webpack.config.js
@@ -0,0 +1,13 @@
+const path = require('path');
+
+module.exports = {
+  module: {
+    loaders: [
+      {
+        test: /.scss$/,
+        loaders: ["style", "css", "sass"],
+        include: path.resolve(__dirname, '../')
+      }
+    ]
+  }
+}