Pretty basic template for a monorepo with SvelteKit + TypeScript + ESLint + TailwindCSS preconfigured.
pnpm install - Install dependenciespnpm frontend dev - Start the frontend serverapps/ directory and adding a package.json to it.
You can also create a new package in the packages/ directory if you want to share code between multiple apps.pnpm frontend <command> - Run commands in the frontend package
pnpm backend <command> - Run commands in the backend package
The above are shorthand for pnpm --filter frontend <command> and pnpm --filter backend <command> respectively.