notherbase-fs 1.1.31 → 1.1.32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/controllers/explorer.js +4 -5
- package/package.json +1 -1
package/controllers/explorer.js
CHANGED
|
@@ -100,6 +100,10 @@ let complete = function complete(explorerBuild) {
|
|
|
100
100
|
}
|
|
101
101
|
}
|
|
102
102
|
|
|
103
|
+
// start location
|
|
104
|
+
router.get("/", function(req, res) {
|
|
105
|
+
res.redirect("/the-front");
|
|
106
|
+
});
|
|
103
107
|
|
|
104
108
|
//the void
|
|
105
109
|
router.use(function(req, res, next){
|
|
@@ -114,11 +118,6 @@ let complete = function complete(explorerBuild) {
|
|
|
114
118
|
main: `${dir}/${explorerBuild.void}/index`
|
|
115
119
|
});
|
|
116
120
|
});
|
|
117
|
-
|
|
118
|
-
// start location
|
|
119
|
-
router.get("/", function(req, res) {
|
|
120
|
-
res.redirect("/the-front");
|
|
121
|
-
});
|
|
122
121
|
}
|
|
123
122
|
|
|
124
123
|
module.exports = {
|