{{ data }}``` Note that [h3 utilities](https://github.com/unjs/h3#utilities) are auto-imported. :ReadMore{link="https://nitro.unjs.io/guide/routing" title="Nitro Route Handling Docs"} ## Server Routes Files inside the `~/server/api` are automatically prefixed with `/api` in their route. To add server routes without `/api` prefix, put them into `~/server/routes` directory. **Example:** ```ts [server/routes/hello.ts] export default defineEventHandler(() => 'Hello World!') ``` Given the example above, the `/hello` route will be accessible at