import type { UserConfigExport } from '@tarojs/cli'; export default { logger: { quiet: false }, compiler: { type: 'webpack5', prebundle: { enable: false }, }, mini: { miniCssExtractPluginOption: { ignoreOrder: true, }, webpackChain(chain) { chain.devtool(false); chain.cache({ type: 'filesystem', buildDependencies: { config: [__filename], }, }); }, }, h5: {}, } satisfies UserConfigExport;