✅ COMPLETED: 1. Dockerfile uses port 80 (astro preview) 2. BaseLayout imports globals.css 3. globals.css with Tailwind v4 @theme syntax 4. index.astro has Header, Footer, FixedContact 5. All image references fixed to existing files 6. Hero uses hdpe_pipe_main.jpg 7. Product cards use hdpe001.jpg 8. pt-20 on main for fixed header ✅ TESTED LOCALLY: - Build: 15 pages in 1.27s - Docker build successful - Port 80 working - Images load - CSS works Ready for Easypanel deployment.
42 lines
1.1 KiB
TypeScript
42 lines
1.1 KiB
TypeScript
import type {Root} from 'mdast'
|
|
import type {Options as ToMarkdownExtension} from 'mdast-util-to-markdown'
|
|
import type {Plugin} from 'unified'
|
|
import type {Options} from './lib/index.js'
|
|
|
|
export type {Options} from './lib/index.js'
|
|
|
|
/**
|
|
* Add support for serializing to markdown.
|
|
*
|
|
* @this
|
|
* Unified processor.
|
|
* @param
|
|
* Configuration (optional).
|
|
* @returns
|
|
* Nothing.
|
|
*/
|
|
declare const remarkStringify: Plugin<
|
|
[(Readonly<Options> | null | undefined)?],
|
|
Root,
|
|
string
|
|
>
|
|
export default remarkStringify
|
|
|
|
// Add custom settings supported when `remark-stringify` is added.
|
|
declare module 'unified' {
|
|
interface Settings extends Options {}
|
|
|
|
interface Data {
|
|
/**
|
|
* List of `mdast-util-to-markdown` extensions to use.
|
|
*
|
|
* This type is registered by `remark-stringify`.
|
|
* Values can be registered by remark plugins that extend
|
|
* `mdast-util-to-markdown`.
|
|
* See {@link ToMarkdownExtension | `Options`} from
|
|
* {@link https://github.com/syntax-tree/mdast-util-to-markdown#options | `mdast-util-to-markdown`}.
|
|
*/
|
|
toMarkdownExtensions?: ToMarkdownExtension[]
|
|
}
|
|
}
|