Skip to content

Commit bf5113b

Browse files
authored
Merge pull request #330 from shapehq/enhancement/improves-loading-pages-transition
Improve the speed of displaying instant feedback during navigation
2 parents a187659 + c29f1d1 commit bf5113b

File tree

19 files changed

+289
-369
lines changed

19 files changed

+289
-369
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ yarn-error.log*
2626

2727
# local env files
2828
.env*.local
29-
29+
.env
3030
# vercel
3131
.vercel
3232

.vscode/launch.json

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
{
2+
"version": "0.2.0",
3+
"configurations": [
4+
{
5+
"name": "Next.js: debug server-side",
6+
"type": "node-terminal",
7+
"request": "launch",
8+
"command": "npm run dev"
9+
},
10+
{
11+
"name": "Next.js: debug client-side",
12+
"type": "chrome",
13+
"request": "launch",
14+
"url": "http://localhost:3000"
15+
},
16+
{
17+
"name": "Next.js: debug full stack",
18+
"type": "node",
19+
"request": "launch",
20+
"program": "${workspaceFolder}/node_modules/.bin/next",
21+
"runtimeArgs": ["--inspect"],
22+
"skipFiles": ["<node_internals>/**"],
23+
"serverReadyAction": {
24+
"action": "debugWithChrome",
25+
"killOnServerStop": true,
26+
"pattern": "- Local:.+(https?://.+)",
27+
"uriFormat": "%s",
28+
"webRoot": "${workspaceFolder}"
29+
}
30+
}
31+
]
32+
}

0 commit comments

Comments
 (0)