This directory is a brief example of a Waline app that can be deployed with Vercel and zero configuration.
Deploy your own Waline project with Vercel.
//index.js
const Waline = require('@waline/vercel');
module.exports = Waline();
//vercel.json
{
"builds": [
{
"src": "index.js",
"use": "@vercel/node"
}
],
"routes": [
{
"src": "/(.*)",
"dest": "index.js"
}
]
}
You can deploy your new Waline project with a single command from your terminal using Vercel CLI:
vercel