3 Commits
main ... dev

Author SHA1 Message Date
149ed13c5f chore: update gitignore 2026-03-23 12:45:13 +01:00
fd6edf9d09 feat: create app base 2026-03-23 12:44:50 +01:00
e70a8a2e25 chore: update gitignore to reflect vercel preferences 2026-03-23 12:43:48 +01:00
3 changed files with 4 additions and 2 deletions

2
.gitignore vendored
View File

@@ -7,6 +7,7 @@ yarn-error.log*
pnpm-debug.log* pnpm-debug.log*
lerna-debug.log* lerna-debug.log*
bun.lock
node_modules node_modules
dist dist
dist-ssr dist-ssr
@@ -22,3 +23,4 @@ dist-ssr
*.njsproj *.njsproj
*.sln *.sln
*.sw? *.sw?
.vercel

View File

@@ -8,8 +8,8 @@
</head> </head>
<body> <body>
<div id="app"> <div id="app">
<h1>hmmm</h1>
</div> </div>
<script type="module" src="/src/main.ts"></script> <script type="module" src="/src/app.ts"></script>
</body> </body>
</html> </html>

0
src/app.ts Normal file
View File