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 ✅
23 lines
585 B
JavaScript
23 lines
585 B
JavaScript
import { importPlugin as _importPlugin } from "#import-plugin";
|
|
async function importPlugin(p) {
|
|
if (typeof p === "string") {
|
|
return await _importPlugin(p);
|
|
} else {
|
|
return p;
|
|
}
|
|
}
|
|
function loadPlugins(items) {
|
|
return items.map((p) => {
|
|
return new Promise((resolve, reject) => {
|
|
if (Array.isArray(p)) {
|
|
const [plugin, opts] = p;
|
|
return importPlugin(plugin).then((m) => resolve([m, opts])).catch((e) => reject(e));
|
|
}
|
|
return importPlugin(p).then((m) => resolve([m])).catch((e) => reject(e));
|
|
});
|
|
});
|
|
}
|
|
export {
|
|
loadPlugins
|
|
};
|