第一次提交

This commit is contained in:
wangxiaowei
2025-06-11 10:21:51 +08:00
commit 52932d54b1
2341 changed files with 185283 additions and 0 deletions

27
config.js Normal file
View File

@ -0,0 +1,27 @@
//var app_url = 'http://www.jjj-shop-multi.com';
// var app_url = 'https://multi.jjjshop.net';
var app_url = 'https://wudi11.stnav.com';
// 如果是本地测试环境
if(process.env.NODE_ENV === 'development'){
//#ifdef H5
app_url = '';
//#endif
}
// 如果是生产环境h5环境下直接读取url
if(process.env.NODE_ENV === 'production'){
//#ifdef H5
app_url = window.location.protocol+'//' + window.location.host;
//#endif
}
export default {
/*服务器地址*/
app_url: app_url,
/*appid*/
app_id: 10001,
//h5发布路径
h5_addr: '/h5',
//inonfont 字体url
font_url: 'https://at.alicdn.com/t/font_2184879_i7r5f24ts0d.ttf'
}