1234567891011121314151617181920212223 |
- import type { UserConfigExport } from '@tarojs/cli';
- export default {
- logger: {
- quiet: false,
- stats: true,
- },
- mini: {},
- h5: {
- devServer: {
- proxy: {
- '/dr': {
- target: 'http://101.43.219.60:7700', // 你的后端服务地址
- changeOrigin: true, // 允许跨域
- // pathRewrite: {
- // '^/dr/api': '' // 可选,用于重写路径
- // }
- },
- },
- host: 'localhost', // 这里设置你想要的主机名,
- },
- },
- } satisfies UserConfigExport<'webpack5'>;
|