axios-miniprogram/examples/taro/config/dev.ts

16 lines
247 B
TypeScript
Raw Normal View History

import type { UserConfigExport } from '@tarojs/cli';
2023-05-05 10:59:37 +08:00
export default {
logger: {
quiet: false,
stats: true,
2023-05-05 10:59:37 +08:00
},
mini: {},
2023-08-17 17:04:27 +08:00
h5: {
devServer: {
port: 3000,
2023-08-17 17:11:57 +08:00
allowedHosts: 'all',
2023-08-17 17:04:27 +08:00
},
},
} satisfies UserConfigExport;