var $$mod$ = Symbol.for; var __create = Object.create; var __descs = Object.getOwnPropertyDescriptors; var __defProp = Object.defineProperty; var __getProtoOf = Object.getPrototypeOf; var __hasOwnProp = Object.prototype.hasOwnProperty; var __getOwnPropNames = Object.getOwnPropertyNames; var __getOwnPropDesc = Object.getOwnPropertyDescriptor; // We're disabling Object.freeze because it breaks CJS => ESM and can cause // issues with Suspense and other things that expect the CJS module namespace // to be mutable when the ESM module namespace is NOT mutable // var __objectFreezePolyfill = new WeakSet(); // globalThis.Object.freeze = function freeze(obj) { // __objectFreezePolyfill.add(obj); // return obj; // }; // globalThis.Object.isFrozen = function isFrozen(obj) { // return __objectFreezePolyfill.has(obj); // }; export var __markAsModule = (target) => __defProp(target, "__esModule", { value: true, configurable: true }); // lazy require to prevent loading one icon from a design system export var $$lzy = (target, module, props) => { for (let key in props) { if (!__hasOwnProp.call(target, key)) __defProp(target, key, { get: () => module()[props[key]], enumerable: true, configurable: true, }); } return target; }; export var __toModule = (module) => { return __reExport( __markAsModule( __defProp( module != null ? __create(__getProtoOf(module)) : {}, "default", module && module.__esModule && "default" in module ? { get: () => module.default, enumerable: true, configurable: true } : { value: module, enumerable: true, configurable: true } ) ), module ); }; var tagSymbol = Symbol.for("CommonJSTransformed"); var cjsRequireSymbol = Symbol.for("CommonJS"); export var __commonJS = (cb, name) => { var mod; var has_run = false; const requireFunction = function load() { if (has_run) { return mod.exports; } has_run = true; cb(((mod = { exports: {} }), mod), mod.exports); const kind = typeof mod.exports; if ( (kind === "object" || kind === "function") && !mod.exports[tagSymbol] && Object.isExtensible(mod.exports) ) { Object.defineProperty(mod.exports, tagSymbol, { value: true, enumerable: false, configurable: false, }); if (!("default" in mod.exports)) { Object.defineProperty(mod.exports, "default", { get() { return mod.exports; }, set(v) { if (v === mod.exports) return; mod.exports = v; return true; }, // enumerable: false is important here enumerable: false, configurable: true, }); } } return mod.exports; }; requireFunction[cjsRequireSymbol] = true; return requireFunction; }; export var __cJS2eSM = __commonJS; export var __internalIsCommonJSNamespace = (namespace) => namespace != null && typeof namespace === "object" && ((namespace.default && namespace.default[cjsRequireSymbol]) || namespace[cjsRequireSymbol]); // require() export var __require = (namespace) => { if (__internalIsCommonJSNamespace(namespace)) { return namespace.default(); } return namespace; }; // require().default // this currently does nothing // get rid of this wrapper once we're more confident we do not need special handling for default __require.d = (namespace) => { return namespace; }; export var $$m = __commonJS; export var __name = (target, name) => { Object.defineProperty(target, "name", { value: name, enumerable: false, configurable: true, }); return target; }; // ESM export -> CJS export // except, writable incase something re-exports export var __export = (target, all) => { for (var name in all) __defProp(target, name, { get: all[name], enumerable: true, configurable: true, set: (newValue) => (all[name] = () => newValue), }); }; export var __exportValue = (target, all) => { for (var name in all) { __defProp(target, name, { get: () => all[name], set: (newValue) => (all[name] = newValue), enumerable: true, configurable: true, }); } }; export var __exportDefault = (target, value) => { __defProp(target, "default", { get: () => value, set: (newValue) => (value = newValue), enumerable: true, configurable: true, }); }; export var __reExport = (target, module, desc) => { if ((module && typeof module === "object") || typeof module === "function") for (let key of __getOwnPropNames(module)) if (!__hasOwnProp.call(target, key) && key !== "default") __defProp(target, key, { get: () => module[key], configurable: true, enumerable: !(desc = __getOwnPropDesc(module, key)) || desc.enumerable, }); return target; }; function hasAnyProps(obj) { for (let key in obj) return true; return false; } function mergeDefaultProps(props, defaultProps) { var result = __create(defaultProps, __descs(props)); for (let key in defaultProps) { if (result[key] !== undefined) continue; result[key] = defaultProps[key]; } return result; } export var __merge = (props, defaultProps) => { return !hasAnyProps(defaultProps) ? props : !hasAnyProps(props) ? defaultProps : mergeDefaultProps(props, defaultProps); }; on> Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/packages/integrations/vercel/test/fixtures/serverless-prerender/src (unfollow)
AgeCommit message (Collapse)AuthorFilesLines
2023-07-17Fix cloudflare runtime env var handling (#7679)Gravatar Bjorn Lu 5-2/+24
Co-authored-by: Emanuele Stoppa <my.burning@gmail.com> Co-authored-by: Matthew Phillips <matthew@skypack.dev>
2023-07-17Handle flaky tests (#7651)Gravatar Bjorn Lu 6-44/+56
2023-07-14[ci] release (#7658)Gravatar Houston (Bot) 8-14/+16
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2023-07-14[ci] formatGravatar natemoo-re 2-4/+4
2023-07-14fix(#7654): exclude @vercel/nft (#7659)Gravatar Nate Moore 3-0/+11
2023-07-14[ci] formatGravatar natemoo-re 2-26/+28
2023-07-14Sitemap should only exclude 404 and 500 pages (#7655)Gravatar Nate Moore 7-29/+60
* fix(#7472): sitemap should only exclude 404 and 500 pages * chore: refactor logic, add test
2023-07-14Revert "Clarify SSR limitations of sitemaps of dynamic routes (#7625)" (#7653)Gravatar Matthew Phillips 1-2/+0
This reverts commit 9352ac65f4d8c44a5d0cf9cccc37a1196da538cf.
2023-07-14[ci] formatGravatar ematipico 1-3/+2
2023-07-14refactor: use SSR manifest in dev (#7587)Gravatar Emanuele Stoppa 8-97/+182
2023-07-14[ci] formatGravatar matthewp 1-2/+1
2023-07-14Clarify SSR limitations of sitemaps of dynamic routes (#7625)Gravatar paulrudy 1-0/+3
While this README doesn't distinguish between SSR mode and static mode (and SSR mode was recently made available for the sitemaps integration), there is one important difference: Dynamic routes that are server-rendered can't be used to create sitemap entries. This note makes that clear.
2023-07-14[ci] release (#7645)astro@2.8.3Gravatar Houston (Bot) 44-85/+77
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2023-07-14nit: export props has been unnecessary.. forever (#7646)Gravatar Erika 32-39/+39
2023-07-14fix(squoosh): Fix wrong file path in rotation check (#7650)Gravatar Erika 1-1/+3
2023-07-14[docs] fix link in image integration README (#7649)Gravatar Sarah Rainsberger 1-1/+1
2023-07-14Remove weird changeset symbols (#7648)Gravatar Bjorn Lu 2-2/+2
2023-07-14Refactor merge server config (#7639)Gravatar Bjorn Lu 3-28/+26
2023-07-13[ci] formatGravatar matthewp 4-16/+19
2023-07-13Fixes for redirects config (#7644)Gravatar Matthew Phillips 9-14/+110
* Update redirects static generation based on recs Got some great recommendations on how to handle our HTML written redirect code based on SEO best practices. See https://github.com/withastro/roadmap/issues/466#issuecomment-1595940678 This implements them all. * Fix for using the root path / as a redirect Fixes https://github.com/withastro/astro/issues/7478 * Fix static redirects prefer over dynamic page Fixes https://github.com/withastro/astro/issues/7581
2023-07-13fix(assets): Fix images not following EXIF rotation (#7637)Gravatar Erika 7-8/+46
2023-07-13[ci] formatGravatar Princesseuh 1-1/+1
2023-07-13Allow SVGs when using Assets (#7643)Gravatar Alvin Bryan 8-17/+46
* Allow SVG files when using Assets * Fixed TypeScript error * fix: some small nits and add a test * chore: changeset --------- Co-authored-by: Princesseuh <princssdev@gmail.com>
2023-07-13Convert CLI top-level imports as dynamic imports (#7635)Gravatar Bjorn Lu 4-46/+45
2023-07-13[ci] release (#7624)astro@2.8.2@astrojs/vercel@3.7.1@astrojs/underscore-redirects@0.2.0@astrojs/netlify@2.4.0@astrojs/cloudflare@6.6.1Gravatar Houston (Bot) 49-108/+129
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2023-07-13[ci] formatGravatar sarah11918 1-5/+10
2023-07-13[docs] update image integration README (#7633)Gravatar Sarah Rainsberger 1-2/+69
Co-authored-by: Yan Thomas <61414485+Yan-Thomas@users.noreply.github.com>
2023-07-13[ci] formatGravatar bluwy 1-1/+1
2023-07-13Move all CLI commands to their subfolders (#7634)Gravatar Bjorn Lu 7-102/+170
2023-07-13[ci] formatGravatar ematipico 1-2/+2
2023-07-13feat(@astrojs/netlify): add `build.split` support (#7615)Gravatar Emanuele Stoppa 20-35/+234
Co-authored-by: Sarah Rainsberger <sarah@rainsberger.ca> Co-authored-by: Bjorn Lu <bjornlu.dev@gmail.com>
2023-07-13Update turbo cache flow (#7631)Gravatar Bjorn Lu 1-33/+36
2023-07-12Fix `build.excludeMiddleware` default type docs (#7630)Gravatar Yan Thomas 1-1/+1
2023-07-12Refactor config loading (#7622)Gravatar Bjorn Lu 6-151/+90
2023-07-12[ci] formatGravatar bluwy 1-1/+1
2023-07-12feat: bumped typescript-eslint to v6 stable 🥳 (#7626)Gravatar Josh Goldberg ✨ 4-43/+49
2023-07-12fix(@astrojs/vercel): improve file detection (#7621)Gravatar Emanuele Stoppa 16-25/+113
2023-07-11[ci] formatGravatar matthewp 1-1/+1
2023-07-11Fixes Response not being cloneable by middleware (#7623)Gravatar Matthew Phillips 5-0/+37
2023-07-11[ci] release (#7594)astro@2.8.1@astrojs/prefetch@0.3.0@astrojs/markdoc@0.4.2Gravatar Houston (Bot) 50-104/+100
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2023-07-11Filter out astro from `peerDependencies` in `astro add` (#7620)Gravatar Chris Swithinbank 2-1/+7
2023-07-11[ci] formatGravatar bluwy 1-1/+1
2023-07-11Refactor simple CLI commands (#7619)Gravatar Bjorn Lu 12-115/+123
2023-07-10fix: `astro info` command fallback for package manager (#7618)Gravatar Emanuele Stoppa 2-1/+7
2023-07-10Add CLI startup speed benchmark (#7617)Gravatar Bjorn Lu 5-11/+95
2023-07-10[ci] formatGravatar bluwy 1-1/+1