From c1d1661a22f7f57bf4b2335bb3170696636d7efa Mon Sep 17 00:00:00 2001 From: Tom Gallacher Date: Mon, 23 Jan 2017 11:00:07 +0000 Subject: [PATCH] Fix broken production deployments --- frontend/webpack/base.js | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/frontend/webpack/base.js b/frontend/webpack/base.js index d6f1af81..89c61179 100644 --- a/frontend/webpack/base.js +++ b/frontend/webpack/base.js @@ -74,12 +74,15 @@ module.exports = { }, { test: /\.(eot|svg|ttf|woff|woff2)$/, - exclude: /node_modules/, loader: 'file-loader', + // XXX: By commenting this out, production "BUILD=production make compile" + // will break. + // + // exclude: /node_modules/, include: [ FRONTEND, UI - ] + ], }, { test: /\.css$/,