PACKAGES

Rasengan Vercel

The @rasenganjs/vercel package is an adapter that configures Rasengan.js applications for deployment on the Vercel platform. It ensures that the project is properly structured and optimized for Vercel's serverless environment.

Installation

Terminal
bashnpm install @rasenganjs/vercel

Configuration

To configure Rasengan.js for Vercel, you need to import the adapter in your rasengan.config.js file and integrate it with the Rasengan.js plugin.

Example Configuration

rasengan.config.js
javascriptimport { defineConfig } from "rasengan"; import { rasengan } from "rasengan/plugin"; import { configure } from "@rasenganjs/vercel"; export default defineConfig({ vite: { plugins: [ rasengan({ adapter: configure(), }), ], }, });

In the example above, the configure function from @rasenganjs/vercel is used to set up the Vercel adapter for the Rasengan.js application. The adapter is then passed to the rasengan plugin exported from rasengan/plugin to enable the necessary features for Vercel deployment.

Deployment

Once the adapter is configured, you can deploy your Rasengan.js application using Vercel's CLI:

Terminal
bashvercel

Alternatively, you can link your GitHub repository to Vercel, and it will automatically detect the configuration and deploy your application.

Community

Join the Rasengan.js community to get support, ask questions, and share your projects:

Let's build something amazing with Rasengan.js! 🚀

License

This package is MIT licensed.

Subscribe to the Newsletter

Stay informed to the news about rasengan.js including new releases, events, etc...

© 2025 Rasengan Labs, All rights reserved.