aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/examples/with-docker/apps/web/next.config.js
diff options
context:
space:
mode:
Diffstat (limited to 'examples/with-docker/apps/web/next.config.js')
-rw-r--r--examples/with-docker/apps/web/next.config.js10
1 files changed, 10 insertions, 0 deletions
diff --git a/examples/with-docker/apps/web/next.config.js b/examples/with-docker/apps/web/next.config.js
new file mode 100644
index 0000000..ce29f15
--- /dev/null
+++ b/examples/with-docker/apps/web/next.config.js
@@ -0,0 +1,10 @@
+const path = require("path");
+
+module.exports = {
+ reactStrictMode: true,
+ transpilePackages: ["ui"],
+ output: "standalone",
+ experimental: {
+ outputFileTracingRoot: path.join(__dirname, "../../"),
+ },
+};