|
@@ -30,6 +30,13 @@ app.get('/ssoPrefix/**', (req, res, next) => {
|
|
|
next()
|
|
next()
|
|
|
})
|
|
})
|
|
|
|
|
|
|
|
|
|
+app.all('*', (req, res, next) => {
|
|
|
|
|
+ if (req.url.indexOf('/basic/enterprise/openVendor') > -1) {
|
|
|
|
|
+ console.log(new Date(), req.url)
|
|
|
|
|
+ }
|
|
|
|
|
+ next()
|
|
|
|
|
+})
|
|
|
|
|
+
|
|
|
app.set('port', port)
|
|
app.set('port', port)
|
|
|
|
|
|
|
|
// Import and Set Nuxt.js options
|
|
// Import and Set Nuxt.js options
|