const Application = require('express')();
const ParseDashboard = require('parse-dashboard');
const ParseServer = require('parse-server').ParseServer;
Application.use('/parse', new ParseServer ({ ... }));
Application.use('/dashboard', new ParseDashboard ({ ... }));
require('http').createServer(Application).listen(process.env.PORT || '80', () => {
console.log('Parse Server is at your service.');
});
Environment Setup
Parse Dashboard 1.3.0
Parse Server 2.8.4
express 4.16.4
node 10.15.3
Steps to reproduce
Then
http://localhost/dashboard/appswill redirect tohttp://localhost/apps/nameOfAppAny shortcut such as:
http://localhost/apps/nameOfApp/browser/_User => fails
http://localhost/dashboard/apps/nameOfApp/browser/_User => redirects to http://localhost/apps/nameOfApp/browser/_Installation
Thanks for your help