- 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
13 lines
332 B
TypeScript
13 lines
332 B
TypeScript
import { RegexEngine } from '@shikijs/types';
|
|
|
|
/**
|
|
* Raw JavaScript regex engine that only supports precompiled grammars.
|
|
*
|
|
* This further simplifies the engine by excluding the regex compilation step.
|
|
*
|
|
* Zero dependencies.
|
|
*/
|
|
declare function createJavaScriptRawEngine(): RegexEngine;
|
|
|
|
export { createJavaScriptRawEngine };
|