mcfly/routes/[...index].ts
2023-10-07 22:38:35 +02:00

7 lines
251 B
TypeScript

import * as fs from "fs";
export default eventHandler((event) => {
const filename = event.path === "/" ? "/index.html" : `${event.path}.html`;
const path = `./src/pages${filename}`;
const html = fs.readFileSync(path, "utf8");
return html;
});