From 5981ff24993af32d76d146fe848900a6953a5019 Mon Sep 17 00:00:00 2001 From: Florrdv Date: Sun, 21 Jul 2024 14:48:33 -0700 Subject: [PATCH 1/2] Remove trailing slash from deployment instructions --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 5ca6394..772c413 100644 --- a/README.md +++ b/README.md @@ -55,11 +55,11 @@ In this example we will be publishing the Next.js app to [Vercel](https://vercel 3. Deploy your app to Vercel. You can follow the guide [here](https://vercel.com/docs/concepts/deployments/git). 4. While deploying make sure to set the environment variable `OPENAI_API_KEY` to your OpenAI API key. ![Photo of environment variable editor](https://static.figma.com/uploads/e41166e6a4e0d9c9c90bf662a609396ab7fe33cc) -5. Once your app is deployed you can update the `siteURL` section of your `package.json` file to point to the deployed URL. It will look something like `https://your-site-here.vercel.app/` +5. Once your app is deployed you can update the `siteURL` section of your `package.json` file to point to the deployed URL. It will look something like `https://your-site-here.vercel.app` ```json "config": { - "siteURL": "https://your-site-here.vercel.app/" + "siteURL": "https://your-site-here.vercel.app" } ``` From b1f938637b4c0f283e1ba6f3cf2533575238565e Mon Sep 17 00:00:00 2001 From: Florrdv Date: Sun, 21 Jul 2024 15:00:17 -0700 Subject: [PATCH 2/2] Remove trailing slash from package.json --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 28040b6..bab9c41 100644 --- a/package.json +++ b/package.json @@ -36,6 +36,6 @@ "concurrently": "^8.2.0" }, "config": { - "siteURL": "https://test-ai-plugin-template.vercel.app/" + "siteURL": "https://test-ai-plugin-template.vercel.app" } }