InspectionCleaning/config/config.js

17 lines
481 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

let config = {
//不拦截页面路径
whiteList: [
'/pages/public/login',
'/pages/public/forget_password',
'/pages/public/register',
'/pages/index/index',
'/pages/index/list',
'/pages/subPack/index/detail',
//一行一个
],
token : 'token', //本地存储token的变量名
login_page : '/pages/public/login', //拦截后跳转的登陆页路径
vconsole_status: 0, //是否启用调试工具1为启用0不启用
}
export default config