effortless-aws 0.13.0 → 0.14.0
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/cli/index.js +1 -1
- package/dist/cli/index.js.map +1 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/cli/index.js
CHANGED
|
@@ -73356,7 +73356,7 @@ var deployStaticSite = (input) => Effect_exports.gen(function* () {
|
|
|
73356
73356
|
});
|
|
73357
73357
|
const oacName = `${project2}-${stage}-oac`;
|
|
73358
73358
|
const { oacId } = yield* ensureOAC({ name: oacName });
|
|
73359
|
-
const domain = config2.domain;
|
|
73359
|
+
const domain = typeof config2.domain === "string" ? config2.domain : config2.domain?.[stage];
|
|
73360
73360
|
let aliases;
|
|
73361
73361
|
let acmCertificateArn;
|
|
73362
73362
|
let wwwDomain;
|