Skip to content
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
1 change: 1 addition & 0 deletions examples/app-pages-router/next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ const nextConfig = {
poweredByHeader: false,
output: "standalone",
transpilePackages: ["@example/shared"],
outputFileTracing: "../sst",
experimental: {
serverActions: true,
},
Expand Down
2 changes: 1 addition & 1 deletion examples/app-pages-router/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"build": "next build",
"start": "next start --port 3003",
"lint": "next lint",
"clean": "rm -rf .turbo && rm -rf node_modules"
"clean": "rm -rf .turbo node_modules .next .open-next"
},
"dependencies": {
"open-next": "workspace:*",
Expand Down
1 change: 1 addition & 0 deletions examples/app-router/next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ const nextConfig = {
poweredByHeader: false,
output: "standalone",
transpilePackages: ["@example/shared"],
outputFileTracing: "../sst",
experimental: {
serverActions: true,
},
Expand Down
2 changes: 1 addition & 1 deletion examples/app-router/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"build": "next build",
"start": "next start --port 3001",
"lint": "next lint",
"clean": "rm -rf .turbo && rm -rf node_modules"
"clean": "rm -rf .turbo node_modules .next .open-next"
},
"dependencies": {
"open-next": "workspace:*",
Expand Down
2 changes: 2 additions & 0 deletions examples/pages-router/next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
const nextConfig = {
transpilePackages: ["@example/shared"],
reactStrictMode: true,
output: "standalone",
outputFileTracing: "../sst",
};

module.exports = nextConfig;
2 changes: 1 addition & 1 deletion examples/pages-router/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"build": "next build",
"start": "next start --port 3002",
"lint": "next lint",
"clean": "rm -rf .turbo && rm -rf node_modules"
"clean": "rm -rf .turbo node_modules .next .open-next"
},
"dependencies": {
"@next/font": "13.4.16",
Expand Down
1 change: 1 addition & 0 deletions packages/utils/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"name": "@open-next/utils",
"version": "0.0.0",
"private": true,
"exports": {
".": "./dist/index.js",
"./binary": "./dist/binary.js",
Expand Down
Loading