Serving files that contain ":" in them

How do I serve a folder like this with Layer0?

  • some_folder/
    • content:en:1:getting-started.json
    • content:en:2:something-else.json

I tried
.static('some_folder')
OR

.get('/:path*', ({ cache, serveStatic }) => {
  cache({
    edge: {
      maxAgeSeconds: 60 * 60 * 24 * 365,
      forcePrivateCaching: true,
    },
    browser: {
      serviceWorkerSeconds: 60 * 60 * 24 * 365,
    },
  })
  serveStatic('some_folder/:path*')
})

But didn’t work. Seems like this is failing due to mismatch between path-to-regexp?

When I run path-to-regexp to exactly match the route, it comes up fine in the result, seems like serveStatic fails to serve it rightly?

.static approach worked! Closing this.

Would you mind showing your solution to this working correctly and what the URL pattern would look like for reference?