How to enable Dev Mode with Velo on Wix
Enable Dev Mode with Velo on Wix by accessing the Wix Editor, clicking the Dev Mode button in the top menu, and turning on Velo development features. This allows you to add custom code, APIs, and databases to your Wix site.
Prerequisites
- Active Wix website
- Wix Premium plan or higher
- Basic understanding of web development
- Wix Editor access
Step-by-Step Instructions
Access Your Wix Site Editor
Locate the Dev Mode Button
Enable Dev Mode
Choose Your Development Environment
Explore the Velo Sidebar
Add Your First Code File
.js file. Name your file and click Create.Test Your Setup
export function hello() {
return "Hello from Velo!";
}Save the file using Ctrl+S (or Cmd+S on Mac), then click Preview to test your site.Publish Your Changes
Common Issues & Troubleshooting
Dev Mode button not visible in editor
Ensure you have a Wix Premium plan or higher. Free plans don't support Velo development. Upgrade your plan in the Dashboard → Subscriptions.
Code files not saving or showing errors
Check your JavaScript syntax for errors. Use the Console in the Wix IDE to debug issues. Ensure you're using supported Velo APIs and not browser-specific code in backend files.
Site loading slowly after enabling Dev Mode
Optimize your code by removing unnecessary imports and functions. Use async/await for database operations and avoid heavy computations in frontend code.
Cannot access database or APIs
Verify your site is published with Dev Mode active. Check that you're importing the correct Velo modules using import statements. Review the Permissions in your database collections.