You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
227 B
JavaScript
10 lines
227 B
JavaScript
1 year ago
|
/**
|
||
|
* 全部配置静态资源所在路径
|
||
|
*/
|
||
|
const GLOBAL_CONFIG_BASE_URL = './../../res/js/';
|
||
|
layui.config({
|
||
|
base: `${GLOBAL_CONFIG_BASE_URL}` //静态资源所在路径
|
||
|
}).extend({
|
||
|
index: 'lib/index', //主入口模块
|
||
|
})
|