mirror of
https://github.com/mastodon/mastodon.git
synced 2025-01-24 14:33:24 +01:00
Fixed index in webpack config
This commit is contained in:
parent
7d024a6b68
commit
8aa527434c
1 changed files with 1 additions and 1 deletions
|
@ -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))) {
|
||||
|
|
Loading…
Add table
Reference in a new issue