diff options
Diffstat (limited to 'routes/index.js')
-rw-r--r-- | routes/index.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/routes/index.js b/routes/index.js index 1ab2ba3..d1f7765 100644 --- a/routes/index.js +++ b/routes/index.js @@ -5,7 +5,7 @@ const router = express.Router() const users = require('../lib/getUserIndex') /* GET home page. */ -router.get('/', function (req, res, next) { +router.get(['/', '/s/*', '/t/*', '/r/*', '/c/*'], function (req, res, next) { let flags = [] if (req.query.nfd != null) { flags.push('NO_FEATURE_DETECT') |