diff --git a/packages/nextjs/src/index.ts b/packages/nextjs/src/index.ts index e856c6f..e50af65 100644 --- a/packages/nextjs/src/index.ts +++ b/packages/nextjs/src/index.ts @@ -1,5 +1,9 @@ -import type { ServerClientOptions, StrictOptions } from "@t3-oss/env-core"; -import { type CreateEnv, createEnv as createEnvCore } from "@t3-oss/env-core"; +import type { + CreateEnv, + ServerClientOptions, + StrictOptions, +} from "@t3-oss/env-core"; +import { createEnv as createEnvCore } from "@t3-oss/env-core"; import type { ZodType } from "zod"; const CLIENT_PREFIX = "NEXT_PUBLIC_" as const; diff --git a/packages/nuxt/src/index.ts b/packages/nuxt/src/index.ts index 9fadb25..5230829 100644 --- a/packages/nuxt/src/index.ts +++ b/packages/nuxt/src/index.ts @@ -1,5 +1,9 @@ -import { type CreateEnv, createEnv as createEnvCore } from "@t3-oss/env-core"; -import type { ServerClientOptions, StrictOptions } from "@t3-oss/env-core"; +import type { + CreateEnv, + ServerClientOptions, + StrictOptions, +} from "@t3-oss/env-core"; +import { createEnv as createEnvCore } from "@t3-oss/env-core"; import type { ZodType } from "zod"; const CLIENT_PREFIX = "NUXT_PUBLIC_" as const;