Initial monorepo setup

This commit is contained in:
Jai A
2024-07-03 11:05:58 -07:00
parent 12a3520563
commit 68f0e68343
60 changed files with 13681 additions and 39 deletions

View File

@@ -0,0 +1,10 @@
import { defineEventHandler, getQuery } from 'h3';
export default defineEventHandler((event) => {
const q = getQuery(event);
const projectName = q.name || 'World';
return {
message: `Hello ${projectName}`,
};
});

View File

@@ -0,0 +1,3 @@
{
"extends": "../.nuxt/tsconfig.server.json"
}