123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- const setting = {
-
- publicPath: '',
-
- outputDir: 'dist',
-
- assetsDir: 'static',
-
- lintOnSave: true,
-
- transpileDependencies: [],
-
- baseURL:
- process.env.NODE_ENV === 'development'
- ? 'vab-mock-server'
- : 'vab-mock-server',
-
- title: 'vue-admin-beautiful-pro',
-
- abbreviation: 'vab',
-
- devPort: '81',
-
- version: process.env.VUE_APP_VERSION,
-
- copyright: 'vab',
-
- footerCopyright: true,
-
- progressBar: true,
-
- keepAliveMaxNum: 99,
-
- routerMode: 'hash',
-
- routesWhiteList: ['/login', '/register', '/404', '/401'],
-
- loadingText: '正在加载中...',
-
- tokenName: 'accessToken',
-
- tokenTableName: 'vue-admin-beautiful-2021',
-
- storage: 'localStorage',
-
- recordRoute: true,
-
- logo: 'vuejs-fill',
-
- errorLog: ['development', 'production'],
-
- loginInterception: true,
-
- loginRSA: true,
-
- authentication: 'intelligence',
-
- uniqueOpened: true,
-
- defaultOopeneds: ['/vab'],
-
- debounce: ['doEdit'],
-
- providePlugin: { maptalks: 'maptalks', 'window.maptalks': 'maptalks' },
-
- build7z: false,
-
- templateFolder: 'project',
-
- donation: true,
- }
- module.exports = setting
|