hof 21.1.0-deindex-toggle-beta.1 → 21.1.0
Sign up to get free protection for your applications and to get access to all the features.
- package/lib/deindex.js +1 -2
- package/package.json +1 -1
package/lib/deindex.js
CHANGED
@@ -6,7 +6,6 @@ module.exports = (app, config) => {
|
|
6
6
|
const deIndex = (config.deIndexForm === 'true' || config.deIndexForm === true);
|
7
7
|
|
8
8
|
app.use((req, res, next) => {
|
9
|
-
|
10
9
|
// Preparing common res.locals properties
|
11
10
|
const properties = {
|
12
11
|
deIndex: deIndex
|
@@ -16,4 +15,4 @@ module.exports = (app, config) => {
|
|
16
15
|
});
|
17
16
|
|
18
17
|
return app;
|
19
|
-
}
|
18
|
+
};
|