1. Remove duplicate/broken code in product tables section 2. Fix PostCSS config for Tailwind 4 3. Add @tailwindcss/postcss dependency 4. Remove --production flag from Dockerfile (sharp required) All fixes enable successful Docker build with favicon working.
13 lines
440 B
TypeScript
13 lines
440 B
TypeScript
/**
|
|
* @param {Break} _
|
|
* @param {Parents | undefined} _1
|
|
* @param {State} state
|
|
* @param {Info} info
|
|
* @returns {string}
|
|
*/
|
|
export function hardBreak(_: Break, _1: Parents | undefined, state: State, info: Info): string;
|
|
import type { Break } from 'mdast';
|
|
import type { Parents } from 'mdast';
|
|
import type { State } from 'mdast-util-to-markdown';
|
|
import type { Info } from 'mdast-util-to-markdown';
|
|
//# sourceMappingURL=break.d.ts.map
|