diff options
author | kibigo! <marrus-sh@users.noreply.github.com> | 2017-11-21 18:17:38 -0800 |
---|---|---|
committer | kibigo! <marrus-sh@users.noreply.github.com> | 2017-11-21 18:17:38 -0800 |
commit | 8812bab6875024f76c59ab43d1dd3717e5e6da68 (patch) | |
tree | 772639d7386a689befd98cb454ad4247b9ec5737 /config/webpack | |
parent | bdbbd06dad298dc3e1a5f568f4a3ff3635b48f22 (diff) |
Minor fixes
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 9514bc547..f8741c5d8 100644 --- a/config/webpack/configuration.js +++ b/config/webpack/configuration.js @@ -28,7 +28,7 @@ for (let i = 0; i < themeFiles.length; i++) { if (!data.pack_directory) { data.pack_directory = dirname(themeFile); } - if (data.pack) { + if (data.pack && typeof data.pack == 'object') { themes[data.name] = data; } } |