gemi 0.29.5 → 0.29.6
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/bin/gemi.js +2 -2
- package/dist/bin/gemi.js.map +2 -2
- package/dist/server/index.js +4 -4
- package/dist/server/index.js.map +3 -3
- package/package.json +1 -1
package/dist/bin/gemi.js
CHANGED
|
@@ -34813,7 +34813,7 @@ async function startProdServer() {
|
|
|
34813
34813
|
async function requestHandler(req) {
|
|
34814
34814
|
const { pathname } = new URL(req.url);
|
|
34815
34815
|
const pattern = new me({
|
|
34816
|
-
pathname: "/*.:filetype(png|txt|js|css|jpg|svg|jpeg|ico|ttf)"
|
|
34816
|
+
pathname: "/*.:filetype(png|txt|js|css|jpg|svg|jpeg|avif|webp|ico|ttf)"
|
|
34817
34817
|
});
|
|
34818
34818
|
const isWellKnownFile = pathname.startsWith("/.well-known");
|
|
34819
34819
|
const isFileRequest = pattern.test({ pathname }) || isWellKnownFile;
|
|
@@ -35293,5 +35293,5 @@ program.command("app:route-manifest").action(async () => {
|
|
|
35293
35293
|
});
|
|
35294
35294
|
program.parse();
|
|
35295
35295
|
|
|
35296
|
-
//# debugId=
|
|
35296
|
+
//# debugId=5C89B198B442139064756E2164756E21
|
|
35297
35297
|
//# sourceMappingURL=gemi.js.map
|