@udixio/theme 1.0.0-beta.15 → 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.
- package/dist/theme.cjs.development.js +6 -1
- package/dist/theme.cjs.development.js.map +1 -1
- package/dist/theme.cjs.production.min.js +1 -1
- package/dist/theme.cjs.production.min.js.map +1 -1
- package/dist/theme.esm.js +6 -1
- package/dist/theme.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/config/config.service.ts +7 -1
|
@@ -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
|
|
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;
|