@ahmedrowaihi/8n-starter 2.2.9 → 2.2.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/next.config.mjs +1 -6
  2. package/package.json +1 -1
package/next.config.mjs CHANGED
@@ -1,12 +1,7 @@
1
1
  /** @type {import('next').NextConfig} */
2
- const basePath = process.env.NEXT_BASE_PATH || "";
3
-
4
- const isStaticExport = process.env.NEXT_STATIC_EXPORT === "true";
5
-
6
2
  const config = {
7
3
  reactStrictMode: true,
8
- ...(isStaticExport ? { output: "export", trailingSlash: true } : {}),
9
- ...(basePath ? { basePath, assetPrefix: basePath } : {}),
4
+ adapterPath: process.env.NEXT_ADAPTER_PATH || undefined,
10
5
 
11
6
  // Prevent heavy server-only packages from being bundled into client chunks
12
7
  serverExternalPackages: ["twoslash", "typescript", "gray-matter"],
package/package.json CHANGED
@@ -113,5 +113,5 @@
113
113
  "tsx": "^4.21.0",
114
114
  "typescript": "^5.9.3"
115
115
  },
116
- "version": "2.2.9"
116
+ "version": "2.2.10"
117
117
  }