about summary refs log tree commit diff
path: root/storybook/webpack.config.js
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2016-12-14 18:21:31 +0100
committerEugen Rochko <eugen@zeonfederated.com>2016-12-14 18:21:31 +0100
commitb27066e154c8c2da57f23bf659907bacd37ce4da (patch)
tree25fe95ddb85b78978d529d88c57d619682c98bb7 /storybook/webpack.config.js
parent4284093aa3c33ee7d163d6d4343e60eb4df561c6 (diff)
Re-implemented autosuggestions component for the compose form
Fix #205, fix #156, fix #124
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, '../')
+      }
+    ]
+  }
+}