feat: add Container and Page Module

This commit is contained in:
2024-09-17 01:59:48 +08:00
parent 321a4b41e7
commit 0a9e5c1d4f
21 changed files with 6335 additions and 13271 deletions

9
src/index.ts Normal file
View File

@@ -0,0 +1,9 @@
import { useConfig } from '@abearxiong/use-config';
import { app } from './app.ts';
import './route.ts'
const config = useConfig();
export { app };
app.listen(config.port, () => {
console.log(`server is running at http://localhost:${config.port}`);
});