If you have not done so yet, be sure you have obtained credentials from the
console.
1
Install packages
2
Configure the extension
Create the base nile instance, extended with the nitro plugin
app/composables/useNile.ts
3
Add the route so that the APIs can be handled
ts server/api/[...slug].ts import {nile} from "~/composables/useNile"; export default defineEventHandler(nile.handlers); Client side
For requests in Vue, you can do the followinguseFetch('/api/tenants'), or defineEventHandler
server/api/submit-invite.post.ts