veryfront 0.1.1035 → 0.1.1036
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/esm/deno.js
CHANGED
package/esm/src/proxy/handler.js
CHANGED
|
@@ -400,7 +400,7 @@ export function createProxyHandler(options) {
|
|
|
400
400
|
}));
|
|
401
401
|
if (projectSlug && !token) {
|
|
402
402
|
const status = parseStatusFromError(tokenFetchError);
|
|
403
|
-
if (status === 404) {
|
|
403
|
+
if (status === 404 || isMissingCustomDomainProjectError(tokenFetchError)) {
|
|
404
404
|
if (scope === "preview") {
|
|
405
405
|
logger?.info("Preview project not found", { projectSlug, host });
|
|
406
406
|
return createProjectNotFoundProxyContext(base, "Preview project not found");
|
|
@@ -39,7 +39,7 @@ export async function resolveProxyRequestToken(options) {
|
|
|
39
39
|
}
|
|
40
40
|
catch (error) {
|
|
41
41
|
tokenFetchError = error;
|
|
42
|
-
if (!
|
|
42
|
+
if (!isMissingCustomDomainProjectError(error)) {
|
|
43
43
|
logger?.error(tokenFetchErrorMessage, error, {
|
|
44
44
|
projectSlug,
|
|
45
45
|
customDomain,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "veryfront",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1036",
|
|
4
4
|
"description": "The simplest way to build AI-powered apps",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"react",
|
|
@@ -330,9 +330,9 @@
|
|
|
330
330
|
"@types/react": "19.2.14",
|
|
331
331
|
"@types/react-dom": "19.2.3",
|
|
332
332
|
"ws": "8.21.0",
|
|
333
|
-
"@veryfront/ext-bundler-esbuild": "0.1.
|
|
334
|
-
"@veryfront/ext-content-mdx": "0.1.
|
|
335
|
-
"@veryfront/ext-css-tailwind": "0.1.
|
|
333
|
+
"@veryfront/ext-bundler-esbuild": "0.1.1036",
|
|
334
|
+
"@veryfront/ext-content-mdx": "0.1.1036",
|
|
335
|
+
"@veryfront/ext-css-tailwind": "0.1.1036"
|
|
336
336
|
},
|
|
337
337
|
"devDependencies": {
|
|
338
338
|
"@types/node": "20.9.0"
|