close

Render

Use Nitro's render-com preset to build an output for a Render web service.

vite.config.ts
export default defineConfig({
  plugins: [agentNative({ nitro: { preset: "render-com" } })],
});

Build the app and use Render's normal web service workflow to run the output:

npx @agent-native/core@latest build
node .output/server/index.mjs

Set DATABASE_URL, BETTER_AUTH_SECRET, and any app secrets in Render's environment configuration. Use a persistent SQL database instead of local files.

See Nitro's Render provider guide for the current provider workflow.

What's next