@timber-js/app 0.1.8 → 0.1.9
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.
package/dist/index.js
CHANGED
|
@@ -14119,7 +14119,11 @@ function timberServerBundle() {
|
|
|
14119
14119
|
config(_cfg, { command }) {
|
|
14120
14120
|
if (command === "serve") return { environments: {
|
|
14121
14121
|
rsc: { resolve: { noExternal: ["server-only", "client-only"] } },
|
|
14122
|
-
ssr: { resolve: { noExternal: [
|
|
14122
|
+
ssr: { resolve: { noExternal: [
|
|
14123
|
+
"server-only",
|
|
14124
|
+
"client-only",
|
|
14125
|
+
"nuqs"
|
|
14126
|
+
] } }
|
|
14123
14127
|
} };
|
|
14124
14128
|
const serverDefine = { "process.env.NODE_ENV": JSON.stringify("production") };
|
|
14125
14129
|
return {
|