Disable The Old Template
The Gravity Web client has the same pages included in this template to support legacy versions and will be removed in a future release.
/
/pricing
/terms
/privacy
/contact
You can disable these routes by removing the website routes import in the src/app/app.js
...require('routes/website').default // remove this line
You'll also want to set a new base route now the website has been disabled. I'd recommend changing changing /dashboard in routes/app.js to /
{
path: '/',
view: Dashboard,
layout: 'app',
permission: 'user',
title: 'Dashboard'
}
Last modified 3mo ago