feat: statically render the jet ansi text

This commit is contained in:
Jet Pham 2026-03-05 13:18:50 -08:00
parent e6a9b1a111
commit 5cbe032c23
No known key found for this signature in database
7 changed files with 74 additions and 51 deletions

5
src/global.d.ts vendored
View file

@ -5,6 +5,11 @@ declare module "*.txt?raw" {
export default content;
}
declare module "*.txt?ansi" {
const content: string;
export default content;
}
declare module "*.utf8ans?raw" {
const content: string;
export default content;