shorter colors import statement

This commit is contained in:
NikolaBorislavovHristov 2018-06-05 12:14:27 +03:00
parent d7f68c78cc
commit ed14a53503
2 changed files with 6 additions and 2 deletions

View file

@ -1,4 +1,4 @@
@import "~stremio-colors/colors.less";
@import "colors";
.root {
width: 30px;

View file

@ -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')
]
}
}
]