sass-template-common 0.9.237 → 0.9.238
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/sass-template-common.d.ts +6 -0
- package/dist/sass-template-common.js +1617 -1609
- package/dist/sass-template-common.umd.cjs +22 -22
- package/package.json +1 -1
|
@@ -233,6 +233,12 @@ export declare type BucketOriginConfig = {
|
|
|
233
233
|
menu?: boolean;
|
|
234
234
|
/** Sirve los banners (home/seccion/nota) desde el bucket. */
|
|
235
235
|
banners?: boolean;
|
|
236
|
+
/**
|
|
237
|
+
* Referer exigido por la bucket policy (`aws:Referer`). Sin este header el
|
|
238
|
+
* bucket devuelve 403 aunque la ruta/archivo exista. Default: el mismo
|
|
239
|
+
* valor que usa `getRankingS3` (bucket propio de Debate).
|
|
240
|
+
*/
|
|
241
|
+
referer?: string;
|
|
236
242
|
};
|
|
237
243
|
|
|
238
244
|
export declare const buildTagUrl: (tag: Tag, paths: RoutePathConfig) => string;
|