From 0e8f4724aebdef8c022499837830c3dbcd111f76 Mon Sep 17 00:00:00 2001 From: Alan Rubin Date: Sun, 4 Sep 2016 10:26:40 +0300 Subject: [PATCH] Adding missing comma --- src/docs/configurations/custom-webpack-config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/docs/configurations/custom-webpack-config.js b/src/docs/configurations/custom-webpack-config.js index aca9f85..dac2d0b 100644 --- a/src/docs/configurations/custom-webpack-config.js +++ b/src/docs/configurations/custom-webpack-config.js @@ -21,7 +21,7 @@ export default { loaders: [ { test: /\.scss$/, - loaders: ["style", "css", "sass"] + loaders: ["style", "css", "sass"], include: path.resolve(__dirname, '../') } ]