forked from gxwebsoft/mp-10550
14 lines
251 B
TypeScript
14 lines
251 B
TypeScript
import type { UserConfigExport } from "@tarojs/cli";
|
|
export default {
|
|
logger: {
|
|
quiet: false,
|
|
stats: true
|
|
},
|
|
mini: {
|
|
miniCssExtractPluginOption: {
|
|
ignoreOrder: true
|
|
}
|
|
},
|
|
h5: {}
|
|
} satisfies UserConfigExport<'webpack5'>
|