Skip to content

Commit 40c338a

Browse files
authored
fix: revert output configs (#202)
1 parent ddd23cf commit 40c338a

File tree

4 files changed

+7
-1
lines changed

4 files changed

+7
-1
lines changed

examples/app-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
poweredByHeader: false,
44
transpilePackages: ["@example/shared"],
5+
output: "standalone",
6+
outputFileTracing: "../sst",
57
experimental: {
68
serverActions: true,
79
},

examples/app-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
poweredByHeader: false,
44
transpilePackages: ["@example/shared"],
5+
output: "standalone",
6+
outputFileTracing: "../sst",
57
experimental: {
68
serverActions: true,
79
},

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/src/pages/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import Nav from "@example/shared/components/Nav";
2-
import { Inter } from "@next/font/google";
2+
import { Inter } from "next/font/google";
33
import Head from "next/head";
44

55
const inter = Inter({ subsets: ["latin"] });

0 commit comments

Comments
 (0)