Files
mifi-links/scripts/critical-css.mjs
mifi b66ab0602e
All checks were successful
ci/woodpecker/push/ci Pipeline was successful
ci/woodpecker/push/deploy Pipeline was successful
Resolve issues
2026-02-07 00:40:39 -03:00

54 lines
2.1 KiB
JavaScript

/**
* Post-build step: inline critical CSS in built HTML.
* Reads <buildDir>/index.html, extracts critical CSS, inlines in <head>,
* and defers non-critical styles (preload + link at end of body).
*
* Usage: node scripts/critical-css.mjs [buildDir]
* buildDir: path to build output (default: "build"). Use from repo root.
*/
import { readFileSync, writeFileSync } from 'node:fs';
import { join } from 'node:path';
import { cwd } from 'node:process';
const buildDir = join(cwd(), process.argv[2] || 'build');
const htmlPath = join(buildDir, 'index.html');
// critical/penthouse use a nested puppeteer; point it at our installed Chrome
try {
const puppeteer = await import('puppeteer');
const executablePath = puppeteer.default?.executablePath?.();
if (executablePath) {
process.env.PUPPETEER_EXECUTABLE_PATH = executablePath;
}
} catch {
// no top-level puppeteer or no executable; rely on env or default
}
try {
const { generate } = await import('critical');
const html = readFileSync(htmlPath, 'utf-8');
const { html: outHtml } = await generate({
base: buildDir,
html,
inline: { strategy: 'default' }, // preload in head + link at end of body (no inline JS, CSP-safe)
dimensions: [
{ width: 375, height: 667 }, // mobile (iPhone SE)
{ width: 768, height: 1024 }, // tablet
{ width: 1280, height: 720 }, // desktop
],
penthouse: { timeout: 30000 },
});
// Ensure _app asset paths stay absolute (critical may rewrite; host-based routing needs /_app/...)
const normalized = outHtml.replace(/\.\/_app\//g, '/_app/');
writeFileSync(htmlPath, normalized, 'utf-8');
console.log(`Critical CSS inlined in ${htmlPath}`);
} catch (err) {
const msg = err instanceof Error ? err.message : String(err);
console.error('Critical CSS step failed:', msg);
if (msg.includes('Browser is not downloaded')) {
console.error('Install Chromium first: pnpm run critical-css:install');
console.error('Or run "pnpm run build" without critical CSS.');
}
process.exit(1);
}