Remove Dockerfile and .dockerignore; keep PR focused on caching and HTTP client fixes using npm (no Docker)
This commit is contained in:
parent
548875783c
commit
ef3bf0c698
2 changed files with 5 additions and 4 deletions
|
|
@ -16,8 +16,6 @@ const httpClient = axios.create({
|
||||||
// Keep connections alive to reduce socket churn
|
// Keep connections alive to reduce socket churn
|
||||||
httpAgent: new http.Agent({ keepAlive: true, maxSockets: 50 }),
|
httpAgent: new http.Agent({ keepAlive: true, maxSockets: 50 }),
|
||||||
httpsAgent: new https.Agent({ keepAlive: true, maxSockets: 50 }),
|
httpsAgent: new https.Agent({ keepAlive: true, maxSockets: 50 }),
|
||||||
// Do not throw on HTTP status by default; let callers handle
|
|
||||||
validateStatus: () => true,
|
|
||||||
});
|
});
|
||||||
|
|
||||||
// Utility to get auth token from cookies on the server
|
// Utility to get auth token from cookies on the server
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,10 @@
|
||||||
"storybook": "storybook dev -p 6006",
|
"storybook": "storybook dev -p 6006",
|
||||||
"build-storybook": "storybook build"
|
"build-storybook": "storybook build"
|
||||||
},
|
},
|
||||||
|
"engines": {
|
||||||
|
"node": ">=20.0.0",
|
||||||
|
"npm": ">=10.0.0"
|
||||||
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@radix-ui/react-alert-dialog": "^1.0.5",
|
"@radix-ui/react-alert-dialog": "^1.0.5",
|
||||||
"@radix-ui/react-dialog": "^1.0.5",
|
"@radix-ui/react-dialog": "^1.0.5",
|
||||||
|
|
@ -114,6 +118,5 @@
|
||||||
"@tiptap/extension-mention": {
|
"@tiptap/extension-mention": {
|
||||||
"@tiptap/suggestion": "^2.1.16"
|
"@tiptap/suggestion": "^2.1.16"
|
||||||
}
|
}
|
||||||
},
|
}
|
||||||
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue