We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1fcb7a0 commit b4c2cf6Copy full SHA for b4c2cf6
Parse-Dashboard/app.js
@@ -63,7 +63,8 @@ module.exports = function (config, options) {
63
}
64
65
// wait for app to mount in order to get mountpath
66
- app.on('mount', function () {
+ app.on('mount', function (parent) {
67
+ parent.use('/v2/', express.static(path.join(__dirname, 'public/v2')));
68
const mountPath = getMount(app.mountpath);
69
const users = config.users;
70
const useEncryptedPasswords = config.useEncryptedPasswords ? true : false;
0 commit comments