feature: support .spa files for Single Page Apps

This commit is contained in:
Andy Burke 2025-11-20 16:44:49 -08:00
parent 604090d8b8
commit 9fc91f4cf4
11 changed files with 329 additions and 8 deletions

View file

@ -2,10 +2,12 @@ import * as html from './html.ts';
import * as markdown from './markdown.ts';
import * as static_files from './static.ts';
import * as typescript from './typescript.ts';
import * as spa from './spa.ts';
export default {
html,
markdown,
typescript,
static: static_files
static: static_files,
spa
};