Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

merge master #240

Merged
merged 3 commits into from
Dec 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 16 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Edge.js: .NET and Node.js in-process
<!---[![Build Status](https://app.travis-ci.com/agracio/edge-js.svg?branch=master)](https://app.travis-ci.com/github/agracio/edge-js)--->
[![Build status][appveyor-image]][appveyor-url]
<!-- [![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]
Expand Down Expand Up @@ -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
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
Loading