devsite/node_modules/@11ty/eleventy/src/Util/NormalizeServerlessUrl.js
2024-07-07 18:49:38 -07:00

8 lines
188 B
JavaScript

module.exports = function (url) {
// https://github.com/11ty/eleventy/issues/2067
if (url.endsWith("/*")) {
return url.substring(0, url.length - 2) + "/(.*)";
}
return url;
};