- Move Astro files from dealplustech-astro/ to project root - Update Dockerfile: PORT environment variable (default 80) - Add vite.config.ts with allowedHosts: true - Matches nixpacks behavior for Easypanel deployment - No hardcoded ports or domains
14 lines
452 B
TypeScript
14 lines
452 B
TypeScript
import type {Options as MicromarkOptions} from 'micromark-extension-gfm'
|
|
import type {Options as MdastOptions} from 'mdast-util-gfm'
|
|
|
|
export {default} from './lib/index.js'
|
|
|
|
/**
|
|
* Configuration for `remark-gfm`.
|
|
*
|
|
* Currently supports `singleTilde` as a parse option and
|
|
* `firstLineBlank`, `stringLength`, `tableCellPadding`, and `tablePipeAlign`
|
|
* as serialization options.
|
|
*/
|
|
export interface Options extends MicromarkOptions, MdastOptions {}
|