线上报错
eferenceError: __DEFINES__ is not defined
main.js内容如下
import App from './App'
import uviewPlus from '@/uni_modules/uview-plus'
// #ifndef VUE3
import Vue from 'vue'
import './uni.promisify.adaptor'
Vue.config.productionTip = false
App.mpType = 'app'
const app = new Vue({
...App
})
app.$mount()
// #endif
const initRequest = (http) => {
http.setConfig((config) => {
config.baseURL = `https://i2.xxx.com`;
return config
})
}
// #ifdef VUE3
import {
createSSRApp
} from 'vue'
export function createApp() {
const app = createSSRApp(App)
app.use(uviewPlus, () => {
return {
httpIns: initRequest,
options: {}
}
})
return {
app
}
}
// #endif