20 lines
539 B
JavaScript
20 lines
539 B
JavaScript
module.exports = {
|
|
baseUrl: './',
|
|
assetsDir: 'static',
|
|
productionSourceMap: false,
|
|
devServer: {
|
|
public: 'http://192.168.110.157:8081/' // 你自己本地的ip地址:端口号
|
|
}
|
|
//本地
|
|
// devServer: {
|
|
// public: 'http://192.168.110.156:8081/', // 你自己本地的ip地址:端口号
|
|
// proxy: {
|
|
// '/master': {
|
|
// // target: 'https://master.tmrjournals.com',
|
|
// target: 'http://journalapi.tmrjournals.com/public/index.php',
|
|
// changeOrigin: true,
|
|
// secure: true
|
|
// }
|
|
// }
|
|
// }
|
|
} |