From 7718f8d7b0edb1c05835365ea573781b6eaf1617 Mon Sep 17 00:00:00 2001 From: agracio Date: Sun, 15 Dec 2024 19:53:33 +0000 Subject: [PATCH 1/2] removing appveyor CI --- README.md | 2 +- appveyor.yml => appveyor_disable.yml | 0 package.json | 2 +- 3 files changed, 2 insertions(+), 2 deletions(-) rename appveyor.yml => appveyor_disable.yml (100%) diff --git a/README.md b/README.md index 2a64c618..e3a03d74 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Edge.js: .NET and Node.js in-process -[![Build status][appveyor-image]][appveyor-url] + [![Actions Status][github-img]][github-url] [![CircleCI](https://dl.circleci.com/status-badge/img/gh/agracio/edge-js.svg?style=shield )](https://dl.circleci.com/status-badge/redirect/gh/agracio/edge-js/tree/master) [![Git Issues][issues-img]][issues-url] diff --git a/appveyor.yml b/appveyor_disable.yml similarity index 100% rename from appveyor.yml rename to appveyor_disable.yml diff --git a/package.json b/package.json index 593ee788..901926a5 100644 --- a/package.json +++ b/package.json @@ -55,7 +55,7 @@ "homepage": "https://github.com/agracio/edge-js", "repository": { "type": "git", - "url": "git@github.com:agracio/edge-js.git" + "url": "git+ssh://git@github.com/agracio/edge-js.git" }, "bugs": { "url": "http://github.com/agracio/edge-js/issues" From c180e356f2addf19bd817bd6d1f3dfb23d727468 Mon Sep 17 00:00:00 2001 From: agracio Date: Thu, 19 Dec 2024 03:48:51 +0000 Subject: [PATCH 2/2] Update README.md --- README.md | 19 +++++++++++++++---- 1 file changed, 15 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index e3a03d74..5a7b1d28 100644 --- a/README.md +++ b/README.md @@ -139,11 +139,22 @@ When packaging your application using Webpack make sure that `edge-js` is specif ### Next.js -`next.config.mjs` +`next.config.js` ```js - experimental: { - serverComponentsExternalPackages: ['edge-js'], - }, +const nextConfig = { + serverExternalPackages: ['edge-js'], +} + +module.exports = nextConfig +``` + +`next.config.ts` +```typescript +const nextConfig: NextConfig = { + serverExternalPackages: ['edge-js'], +}; + +export default nextConfig; ``` ## Additional languages support