diff options
author | kibigo! <marrus-sh@users.noreply.github.com> | 2017-12-11 10:45:21 -0800 |
---|---|---|
committer | kibigo! <marrus-sh@users.noreply.github.com> | 2017-12-11 10:45:21 -0800 |
commit | 8aa527434c1f022199b4de576bbb2e31a123782f (patch) | |
tree | b4ed438dcac6829828fd389cca5a52ee388d6998 /config/webpack | |
parent | 7d024a6b6829607218e2c1c6ba75c6ffc3de0eb3 (diff) |
Fixed index in webpack config
Diffstat (limited to 'config/webpack')
-rw-r--r-- | config/webpack/configuration.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/webpack/configuration.js b/config/webpack/configuration.js index 852185eb9..a38d9d11d 100644 --- a/config/webpack/configuration.js +++ b/config/webpack/configuration.js @@ -50,7 +50,7 @@ for (let i = 0; i < skinFiles.length; i++) { data[skin] = {}; const skinPacks = glob.sync(join(skinFile, '*.{css,scss}')); for (let j = 0; j < skinPacks.length; j++) { - const pack = skinPacks[i]; + const pack = skinPacks[j]; data[skin][basename(pack, extname(pack))] = pack; } } else if ((skin = skin.match(/^(.*)\.s?css$/i))) { |