Skip to content

Commit ca8eb3f

Browse files
committed
easy
1 parent cd5f47e commit ca8eb3f

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

src/middleware.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,5 @@ export default async function middleware(request: NextRequest) {
1212

1313
export const config = {
1414
matcher: ["/((?!api|_next|_vercel|.*\\..*).*)"],
15+
unstable_allowDynamic: ["/node_modules/elysia/**"],
1516
};

src/utils/env/client/index.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
import { Type as t } from "@sinclair/typebox/type";
2-
import { Elysia } from "elysia";
1+
import { Elysia, t } from "elysia";
32

43
/** Schema for client-side environment variables in typebox */
54
const {

src/utils/env/server/index.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
import { Type as t } from "@sinclair/typebox/type";
2-
import Elysia from "elysia";
1+
import { Elysia, t } from "elysia";
32

43
const {
54
models: { serverSchema },

0 commit comments

Comments
 (0)