harrywan a8afd7976c
Merge pull request #41 from aringlai/vue3
refactor: vuex插件实现重构,增加类型导出
2021-02-05 17:04:18 +08:00

49 lines
892 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.

// .fes.js 只负责管理编译时配置只能使用plain Object
export default {
base: '/foo/',
define: {
__DEV__: false
},
publicPath: '/',
access: {
roles: {
admin: ["/", "/onepiece", '/store']
}
},
mock: {
prefix: '/v2'
},
proxy: {
'/v2': {
'target': 'https://api.douban.com/',
'changeOrigin': true,
},
},
layout: {
title: "Fes.js",
footer: 'Created by MumbelFe',
multiTabs: false,
menus: [{
name: 'index'
}, {
name: 'onepiece'
}, {
name: 'store'
}]
},
locale: {
legacy: true
},
devServer: {
port: 8080
},
enums: {
status: [['0', '无效的'], ['1', '有效的']]
},
vuex: {
strict: true
}
};