- 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
21 lines
237 B
JavaScript
21 lines
237 B
JavaScript
/**
|
|
* @import {Html} from 'mdast'
|
|
*/
|
|
|
|
html.peek = htmlPeek
|
|
|
|
/**
|
|
* @param {Html} node
|
|
* @returns {string}
|
|
*/
|
|
export function html(node) {
|
|
return node.value || ''
|
|
}
|
|
|
|
/**
|
|
* @returns {string}
|
|
*/
|
|
function htmlPeek() {
|
|
return '<'
|
|
}
|