Deploy your Nuxt 3 applications with full SSR support, hybrid rendering, and automatic optimization.
Deploy your Nuxt application in minutes
Start with a new Nuxt 3 project or use an existing one.
npx nuxi@latest init myappConnect your GitHub, GitLab, or Bitbucket repository to CupaDev.
git push origin mainYour Nuxt app deploys with SSR enabled by default.
export default defineNuxtConfig({
ssr: true,
nitro: {
prerender: {
crawlLinks: true,
routes: [
'/sitemap.xml',
'/rss.xml'
]
}
},
modules: [
'@nuxt/content',
'@nuxt/ui'
],
future: {
compatibilityVersion: 4
},
devtools: {
enabled: true
},
app: {
head: {
charset: 'utf-8',
viewport: 'width=device-width, initial-scale=1'
}
}
})Configure server-side rendering and hybrid rendering modes for optimal performance.
Extend your Nuxt app with a rich ecosystem of modules.
Set environment variables for your Nuxt deployment:
NUXT_PUBLIC_API_BASE=/api
API_SECRET=your_secret_key
DATABASE_URL=postgresql://...Variables prefixed with NUXT_PUBLIC_ are exposed to the browser.
Automatically optimized assets for your Nuxt app:
Point your custom domain to your Nuxt deployment:
Get your Nuxt application deployed with full SSR support and hybrid rendering in minutes.