CSS was not being imported! Fixed: ✅ Added 'import ../styles/global.css' to BaseLayout.astro ✅ Rewrote CSS with plain CSS (not @apply which wasn't working) ✅ Cookie banner has inline styles as backup ✅ Font size: 16px base ✅ Solid colors: green-600 (#16a34a), gray-900 (#111827) ✅ Footer has policy links Build: 12 pages ✅
25 lines
724 B
JavaScript
25 lines
724 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
Object.defineProperty(exports, "default", {
|
|
enumerable: true,
|
|
get: function() {
|
|
return resolveConfig;
|
|
}
|
|
});
|
|
const _resolveConfig = /*#__PURE__*/ _interop_require_default(require("../util/resolveConfig"));
|
|
const _getAllConfigs = /*#__PURE__*/ _interop_require_default(require("../util/getAllConfigs"));
|
|
function _interop_require_default(obj) {
|
|
return obj && obj.__esModule ? obj : {
|
|
default: obj
|
|
};
|
|
}
|
|
function resolveConfig(...configs) {
|
|
let [, ...defaultConfigs] = (0, _getAllConfigs.default)(configs[0]);
|
|
return (0, _resolveConfig.default)([
|
|
...configs,
|
|
...defaultConfigs
|
|
]);
|
|
}
|