diff --git a/README.md b/README.md index cbc9296a0..48c5750f6 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@

- + arkenv - Typesafe Environment Variables
@@ -75,7 +75,7 @@ console.log(env.NODE_ENV); // (property) NODE_ENV: "development" | "production" ## Documentation -For detailed documentation and examples, please visit our [documentation site](https://arkenv.vercel.app/docs). +For detailed documentation and examples, please visit our [documentation site](https://arkenv.js.org/docs). ## Plugins diff --git a/apps/www/README.md b/apps/www/README.md index c686cdc6a..24f602876 100644 --- a/apps/www/README.md +++ b/apps/www/README.md @@ -1,3 +1,3 @@ # ArkEnv site -Welcome! We are live on [arkenv.vercel.app](https://arkenv.vercel.app) :rocket: +Welcome! We are live on [arkenv.js.org](https://arkenv.js.org) :rocket: diff --git a/apps/www/content/docs/README.md b/apps/www/content/docs/README.md index d1c200688..68278b04f 100644 --- a/apps/www/content/docs/README.md +++ b/apps/www/content/docs/README.md @@ -2,4 +2,4 @@ Welcome to the ArkEnv documentation! -You can also view the documentation on our site: https://arkenv.vercel.app/docs. +You can also view the documentation on our site: https://arkenv.js.org/docs. diff --git a/arkenv.code-workspace b/arkenv.code-workspace index af7ffbe91..f3c300bc9 100644 --- a/arkenv.code-workspace +++ b/arkenv.code-workspace @@ -22,7 +22,7 @@ }, { "path": "apps/www", - "name": " www (arkenv.vercel.app)" + "name": " www (arkenv.js.org)" }, { "path": "examples", diff --git a/examples/basic/README.md b/examples/basic/README.md index 179457464..4fc0c3431 100644 --- a/examples/basic/README.md +++ b/examples/basic/README.md @@ -48,7 +48,7 @@ With the development server running (if it isn't - just run `npm run dev`), let' ArkEnvError: Errors found while validating environment variables MY_ENV_VAR must be a string (was missing) ``` - This is **good**! It means the environment variable is required and the type is enforced. Let's see how to fix it. For this example, we will define the environment variable [with a `.env` file](https://arkenv.vercel.app/docs/guides/environment-configuration#using-env-files). + This is **good**! It means the environment variable is required and the type is enforced. Let's see how to fix it. For this example, we will define the environment variable [with a `.env` file](https://arkenv.js.org/docs/guides/environment-configuration#using-env-files). 3. #### Copy the `.env.example` file to `.env` @@ -74,5 +74,5 @@ With the development server running (if it isn't - just run `npm run dev`), let' ### Next steps -- [ArkEnv docs](https://arkenv.vercel.app/docs) +- [ArkEnv docs](https://arkenv.js.org/docs) - [ArkType docs](https://arktype.io/) diff --git a/examples/with-bun/README.md b/examples/with-bun/README.md index f8aee0495..fb2dd1754 100644 --- a/examples/with-bun/README.md +++ b/examples/with-bun/README.md @@ -55,7 +55,7 @@ With the development server running (if it isn't - just run `bun dev`), let's se ArkEnvError: Errors found while validating environment variables MY_ENV_VAR must be a string (was missing) ``` - This is **good**! It means the environment variable is required and the type is enforced. Let's see how to fix it. For this example, we will define the environment variable [with a `.env` file](https://arkenv.vercel.app/docs/guides/environment-configuration#using-env-files). + This is **good**! It means the environment variable is required and the type is enforced. Let's see how to fix it. For this example, we will define the environment variable [with a `.env` file](https://arkenv.js.org/docs/guides/environment-configuration#using-env-files). 3. #### Copy the `.env.example` file to `.env` @@ -88,6 +88,6 @@ With the development server running (if it isn't - just run `bun dev`), let's se ### Next steps -- [ArkEnv docs](https://arkenv.vercel.app/docs) +- [ArkEnv docs](https://arkenv.js.org/docs) - [ArkType docs](https://arktype.io/) - [Bun docs](https://bun.sh) diff --git a/examples/with-vite-react-ts/README.md b/examples/with-vite-react-ts/README.md index e5ce9c0b1..fea32be58 100644 --- a/examples/with-vite-react-ts/README.md +++ b/examples/with-vite-react-ts/README.md @@ -123,6 +123,6 @@ arkenv({ ### Next steps -- [ArkEnv docs](https://arkenv.vercel.app/docs) +- [ArkEnv docs](https://arkenv.js.org/docs) - [ArkType docs](https://arktype.io/) - [Vite Environment Variables guide](https://vitejs.dev/guide/env-and-mode.html) diff --git a/packages/arkenv/package.json b/packages/arkenv/package.json index d413d9064..180217621 100644 --- a/packages/arkenv/package.json +++ b/packages/arkenv/package.json @@ -31,7 +31,7 @@ "validation" ], "license": "MIT", - "homepage": "https://arkenv.vercel.app", + "homepage": "https://arkenv.js.org", "repository": { "type": "git", "url": "git+https://github.com/yamcodes/arkenv.git" diff --git a/packages/vite-plugin/README.md b/packages/vite-plugin/README.md index 8c1aa89be..6a5cf4c3a 100644 --- a/packages/vite-plugin/README.md +++ b/packages/vite-plugin/README.md @@ -80,7 +80,7 @@ See the [with-vite-react-ts example](https://github.com/yamcodes/arkenv/tree/mai ## Documentation -For detailed documentation and more examples, visit the [ArkEnv documentation site](https://arkenv.vercel.app/docs). +For detailed documentation and more examples, visit the [ArkEnv documentation site](https://arkenv.js.org/docs). ## Related diff --git a/packages/vite-plugin/package.json b/packages/vite-plugin/package.json index 9a777e474..2b41a70dc 100644 --- a/packages/vite-plugin/package.json +++ b/packages/vite-plugin/package.json @@ -32,7 +32,7 @@ "files": [ "dist" ], - "homepage": "https://arkenv.vercel.app", + "homepage": "https://arkenv.js.org", "keywords": [ "arktype", "arkenv",