summaryrefslogtreecommitdiffstats
path: root/webapp/webpack.config.js
diff options
context:
space:
mode:
authorChristopher Speller <crspeller@gmail.com>2016-09-23 10:22:35 -0400
committerGitHub <noreply@github.com>2016-09-23 10:22:35 -0400
commit214f9c13a261064733c23d762fa521444fbd7a9c (patch)
treee02c19d673d05b7de6d2e2e36698f61fabee836e /webapp/webpack.config.js
parent90f113dcda43a6455e431029a87e35ab8c537a73 (diff)
downloadchat-214f9c13a261064733c23d762fa521444fbd7a9c.tar.gz
chat-214f9c13a261064733c23d762fa521444fbd7a9c.tar.bz2
chat-214f9c13a261064733c23d762fa521444fbd7a9c.zip
Updating client dependancies (#4083)
Diffstat (limited to 'webapp/webpack.config.js')
-rw-r--r--webapp/webpack.config.js10
1 files changed, 7 insertions, 3 deletions
diff --git a/webapp/webpack.config.js b/webapp/webpack.config.js
index d0947f1a3..153b07339 100644
--- a/webapp/webpack.config.js
+++ b/webapp/webpack.config.js
@@ -84,9 +84,6 @@ var config = {
}
]
},
- sassLoader: {
- includePaths: ['node_modules/compass-mixins/lib']
- },
plugins: [
new webpack.ProvidePlugin({
'window.jQuery': 'jquery'
@@ -102,6 +99,13 @@ var config = {
minimize: !DEV,
debug: false
}),
+ new webpack.LoaderOptionsPlugin({
+ options: {
+ sassLoader: {
+ includePaths: ['node_modules/compass-mixins/lib']
+ }
+ }
+ }),
new webpack.DefinePlugin({
'process.env': {
NODE_ENV: JSON.stringify('production')