diff --git a/src/common/checkbox/styles.less b/src/common/checkbox/styles.less index b7f4ec815..f70db993e 100644 --- a/src/common/checkbox/styles.less +++ b/src/common/checkbox/styles.less @@ -1,4 +1,4 @@ -@import "~stremio-colors/colors.less"; +@import "colors"; .root { width: 30px; diff --git a/webpack.config.js b/webpack.config.js index 33a23169f..73d139d01 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -35,7 +35,11 @@ module.exports = { loader: 'less-loader', options: { strictMath: true, - noIeCompat: true + noIeCompat: true, + compress: true, + paths: [ + path.resolve(__dirname, 'node_modules/stremio-colors') + ] } } ]