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
1023 B
TypeScript
25 lines
1023 B
TypeScript
import type PQueue from 'p-queue';
|
|
import type { AstroConfig } from '../../@types/astro.js';
|
|
import type { BuildPipeline } from '../../core/build/pipeline.js';
|
|
import type { Logger } from '../../core/logger/core.js';
|
|
import type { MapValue } from '../../type-utils.js';
|
|
import type { AssetsGlobalStaticImagesList } from '../types.js';
|
|
type AssetEnv = {
|
|
logger: Logger;
|
|
isSSR: boolean;
|
|
count: {
|
|
total: number;
|
|
current: number;
|
|
};
|
|
useCache: boolean;
|
|
assetsCacheDir: URL;
|
|
serverRoot: URL;
|
|
clientRoot: URL;
|
|
imageConfig: AstroConfig['image'];
|
|
assetsFolder: AstroConfig['build']['assets'];
|
|
};
|
|
export declare function prepareAssetsGenerationEnv(pipeline: BuildPipeline, totalCount: number): Promise<AssetEnv>;
|
|
export declare function generateImagesForPath(originalFilePath: string, transformsAndPath: MapValue<AssetsGlobalStaticImagesList>, env: AssetEnv, queue: PQueue): Promise<void>;
|
|
export declare function getStaticImageList(): AssetsGlobalStaticImagesList;
|
|
export {};
|