@udixio/theme 1.0.0-beta.14 → 1.0.0-beta.16

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1566,7 +1566,12 @@ var ConfigService = /*#__PURE__*/function () {
1566
1566
  if (!configImport) {
1567
1567
  throw new Error('Configuration file not found');
1568
1568
  }
1569
- var config = configImport["default"];
1569
+ var config;
1570
+ if ('default' in configImport) {
1571
+ config = configImport["default"];
1572
+ } else {
1573
+ config = configImport;
1574
+ }
1570
1575
  return config;
1571
1576
  };
1572
1577
  return ConfigService;