- 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
11 lines
337 B
TypeScript
11 lines
337 B
TypeScript
import type { FontFileContentResolver } from '../definitions.js';
|
|
type ReadFileSync = (path: string) => string;
|
|
export declare class FsFontFileContentResolver implements FontFileContentResolver {
|
|
#private;
|
|
constructor({ readFileSync }: {
|
|
readFileSync: ReadFileSync;
|
|
});
|
|
resolve(url: string): string;
|
|
}
|
|
export {};
|