@appconda/nextjs 1.0.78 → 1.0.79

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/dist/lib/env.d.ts CHANGED
@@ -1,4 +1,3 @@
1
- import 'server-only';
2
1
  export declare const env: Readonly<{
3
2
  APPCONDA_ENDPOINT: string;
4
3
  APPCONDA_CLIENT_ENDPOINT: string;
package/dist/lib/env.js CHANGED
@@ -1,6 +1,5 @@
1
1
  import { createEnv } from "@t3-oss/env-nextjs";
2
2
  import { z } from "zod";
3
- import 'server-only';
4
3
  export const env = createEnv({
5
4
  /*
6
5
  * Serverside Environment variables, not available on the client.
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@appconda/nextjs",
3
3
  "homepage": "https://appconda.io/support",
4
4
  "description": "Appconda is an open-source self-hosted backend server that abstract and simplify complex and repetitive development tasks behind a very simple REST API",
5
- "version": "1.0.78",
5
+ "version": "1.0.79",
6
6
  "license": "BSD-3-Clause",
7
7
  "main": "dist/index.js",
8
8
  "types": "dist/index.d.ts",
package/src/lib/env.ts CHANGED
@@ -1,6 +1,5 @@
1
1
  import { createEnv } from "@t3-oss/env-nextjs";
2
2
  import { z } from "zod";
3
- import 'server-only';
4
3
 
5
4
  export const env = createEnv({
6
5
  /*