| 123456789101112131415161718192021 |
- import type { UserConfigExport } from "@tarojs/cli"
- export default {
- logger: {
- quiet: false,
- stats: true
- },
- mini: {},
- h5: {
- devServer: {
- // 配置 HMR WebSocket 端口
- client: {
- progress: true,
- webSocketURL: {
- pathname: '/mini-ws',
- port: 443, // 指定 HMR WebSocket 端口
- },
- },
- }
- }
- } satisfies UserConfigExport<'webpack5'>
|