Files
template-10556/config/dev.ts

26 lines
454 B
TypeScript

import type { UserConfigExport } from "@tarojs/cli";
export default {
logger: {
quiet: false,
stats: true
},
mini: {
miniCssExtractPluginOption: {
ignoreOrder: true
}
},
h5: {
devServer: {
hot: true,
liveReload: false,
client: {
overlay: {
errors: true,
warnings: false,
runtimeErrors: false
}
}
}
}
} satisfies UserConfigExport<'webpack5'>