Skip to content

Commit f0c9945

Browse files
authored
Merge pull request #838 from Lemoncode/feature/tanstack-start
Feature/tanstack start
2 parents 7cead59 + 543b566 commit f0c9945

249 files changed

Lines changed: 4991 additions & 1 deletion

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

04-frameworks/08-nextjs/04-static-site-generation/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -457,7 +457,7 @@ export default nextConfig;
457457
>
458458
> [Next config file](https://nextjs.org/docs/app/api-reference/next-config-js)
459459
460-
Run app dev mode:
460+
Run app prod mode:
461461

462462
```bash
463463
npm run start:api-server
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
node_modules
2+
dist
3+
coverage
4+
.awcache
5+
test-report.*
6+
junit.xml
7+
*.log
8+
*.orig
9+
.cache
10+
.env
11+
.next
12+
.swc
13+
!.vscode
14+
.tanstack
15+
.nitro
16+
.output
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"singleQuote": true,
3+
"trailingComma": "es5",
4+
"endOfLine": "lf"
5+
}
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"files.watcherExclude": {
3+
"**/routeTree.gen.ts": true
4+
},
5+
"search.exclude": {
6+
"**/routeTree.gen.ts": true
7+
},
8+
"files.readonlyInclude": {
9+
"**/routeTree.gen.ts": true
10+
}
11+
}
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"name": "car-api",
3+
"version": "1.0.0",
4+
"description": "Car API",
5+
"type": "module",
6+
"scripts": {
7+
"mock-server": "tsx watch src/index.ts"
8+
},
9+
"author": "Lemoncode",
10+
"license": "MIT",
11+
"dependencies": {
12+
"@hono/node-server": "^1.19.7",
13+
"hono": "^4.11.0"
14+
},
15+
"devDependencies": {
16+
"tsx": "^4.21.0"
17+
}
18+
}
17.2 KB
Loading
22.5 KB
Loading
17.1 KB
Loading
22.8 KB
Loading
27.8 KB
Loading

0 commit comments

Comments
 (0)