404 Not Found

Not the page you are looking for? 👀

This page is shown be default whenever a 404 is hit.
You can disable this by behavior via the landingPage option.

          
import { createRouter } from 'fets';

const router = createRouter({
  landingPage: false
})
          
        

If you expected this page to be the Swagger UI route, you need to configure feTS. Currently, the Swagger UI route is configured to be on /docs.

          
import { createRouter } from 'fets';

const router = createRouter({
  swaggerUI: {
    endpoint: 'http://comfy-playground-153522160166.asia-southeast1.run.app/'
  },
})