Deploy your Vite applications with blazing-fast builds, instant dev mode, and edge optimization.
Deploy your Vite app in minutes
Start with a new Vite project using your favorite framework.
npm create vite@latest myappConnect your GitHub, GitLab, or Bitbucket repository to CupaDev.
git push origin mainYour Vite app deploys with optimal production settings.
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
import path from 'path'
export default defineConfig({
plugins: [react()],
resolve: {
alias: {
'@': path.resolve(__dirname,
'./src'),
},
},
build: {
target: 'esnext',
minify: 'terser',
sourcemap: false,
rollupOptions: {
output: {
manualChunks: {
vendor: ['react', 'react-dom']
}
}
}
}
})Vite automatically optimizes your build with minimal configuration.
Works with React, Vue, Svelte, and any framework.
React apps with Vite for lightning-fast development.
@vitejs/plugin-reactVue 3 single file components with full Vite support.
@vitejs/plugin-vueSvelte components with Vite optimization.
@vitejs/plugin-sveltePlain JavaScript and TypeScript applications.
No plugin neededConfigure environment variables for your Vite deployment:
VITE_API_URL=https://api.example.com
VITE_PUBLIC_KEY=pk_...Variables prefixed with VITE_ are available in your application.
Optimize your Vite build for CupaDev:
Point your custom domain to your Vite deployment:
Get your Vite application deployed with blazing-fast builds and edge optimization in minutes.