๐ฏ๐ChromaCore: Chatbot Interface Wizard ๐
I have built a ๐ค Chatbot interface wizard providing a variety of themes for your chatbot and is live on Vercel.
I am happy to announce that the ChromaCore project is now live on Vercel! ๐
Here is the live preview: ChromaCore ๐
Visit the website and explore the themes you wish to purchase. ๐จ
Here is detailed repository for the same: chromacore ๐
How I deployed the website on Vercel: ๐ ๏ธ
- Install Vercel CLI ๐ป
npm install -g vercel
- Login to Vercel ๐
vercel login
-
Configure Deployment โ๏ธ
- Create a
vercel.json
file in your project root with the following configuration:
- Create a
{
"version": 2,
"builds": [
{
"src": "**/*.html",
"use": "@vercel/static"
},
{
"src": "**/*.css",
"use": "@vercel/static"
},
{
"src": "**/*.js",
"use": "@vercel/static"
},
{
"src": "**/*.png",
"use": "@vercel/static"
},
{
"src": "**/*.jpg",
"use": "@vercel/static"
},
{
"src": "**/*.jpeg",
"use": "@vercel/static"
},
{
"src": "**/*.gif",
"use": "@vercel/static"
},
{
"src": "**/*.svg",
"use": "@vercel/static"
}
],
"routes": [
{
"src": "/(.*)",
"dest": "/$1"
}
]
}
- Deploy to Production ๐
vercel --prod
-
Follow the Prompts ๐
- Choose "Y" to set up and deploy โ
- Select your scope (personal or organization) ๐ฅ
- Choose "N" for linking to existing project โ
- Enter your project name (e.g., "chromacore") โ๏ธ
- Press Enter to use current directory โฉ๏ธ
- Choose "N" to not override settings โ
- Choose "Y" to deploy to production โ
The configuration ensures: โ
- All theme directories are included in deployment ๐
- All file types (HTML, CSS, JS, images) are handled correctly ๐
- Directory structure is maintained ๐๏ธ
- Proper routing for theme directories ๐ฃ๏ธ
Your site will be available at: https://[your-project-name].vercel.app
๐
Top comments (0)