wirejs-resources 0.1.185 → 0.1.187
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/config.d.ts +10 -0
- package/package.json +1 -1
package/dist/config.d.ts
CHANGED
|
@@ -45,6 +45,16 @@ export type DeploymentConfig = {
|
|
|
45
45
|
bundleNodeModules?: string[];
|
|
46
46
|
bundleFormat?: 'cjs' | 'esm';
|
|
47
47
|
bundleMinify?: boolean;
|
|
48
|
+
/**
|
|
49
|
+
* Additional modules to keep external in SSG bundles.
|
|
50
|
+
*
|
|
51
|
+
* This is mainly useful when an SSG entrypoint contains dynamic imports that are
|
|
52
|
+
* only expected to execute during server-side generation and must remain unresolved
|
|
53
|
+
* in the browser hydration bundle.
|
|
54
|
+
*
|
|
55
|
+
* Node builtins are already externalized automatically for the browser SSG build.
|
|
56
|
+
*/
|
|
57
|
+
ssgExternalModules?: string[];
|
|
48
58
|
/**
|
|
49
59
|
* Function URL auth mode for the API Lambda.
|
|
50
60
|
*
|