Skip to content

Commit c4d012d

Browse files
authored
Fix/end to end (#198)
* Fix EndToEnd Tests
1 parent 904e6e6 commit c4d012d

File tree

8 files changed

+65
-97
lines changed

8 files changed

+65
-97
lines changed

examples/app-pages-router/next.config.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ const nextConfig = {
33
poweredByHeader: false,
44
output: "standalone",
55
transpilePackages: ["@example/shared"],
6+
outputFileTracing: "../sst",
67
experimental: {
78
serverActions: true,
89
},

examples/app-pages-router/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"build": "next build",
99
"start": "next start --port 3003",
1010
"lint": "next lint",
11-
"clean": "rm -rf .turbo && rm -rf node_modules"
11+
"clean": "rm -rf .turbo node_modules .next .open-next"
1212
},
1313
"dependencies": {
1414
"open-next": "workspace:*",

examples/app-router/next.config.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ const nextConfig = {
33
poweredByHeader: false,
44
output: "standalone",
55
transpilePackages: ["@example/shared"],
6+
outputFileTracing: "../sst",
67
experimental: {
78
serverActions: true,
89
},

examples/app-router/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"build": "next build",
99
"start": "next start --port 3001",
1010
"lint": "next lint",
11-
"clean": "rm -rf .turbo && rm -rf node_modules"
11+
"clean": "rm -rf .turbo node_modules .next .open-next"
1212
},
1313
"dependencies": {
1414
"open-next": "workspace:*",

examples/pages-router/next.config.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
const nextConfig = {
33
transpilePackages: ["@example/shared"],
44
reactStrictMode: true,
5+
output: "standalone",
6+
outputFileTracing: "../sst",
57
};
68

79
module.exports = nextConfig;

examples/pages-router/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"build": "next build",
99
"start": "next start --port 3002",
1010
"lint": "next lint",
11-
"clean": "rm -rf .turbo && rm -rf node_modules"
11+
"clean": "rm -rf .turbo node_modules .next .open-next"
1212
},
1313
"dependencies": {
1414
"@next/font": "13.4.16",

packages/utils/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"name": "@open-next/utils",
33
"version": "0.0.0",
4+
"private": true,
45
"exports": {
56
".": "./dist/index.js",
67
"./binary": "./dist/binary.js",

0 commit comments

Comments
 (0)