11 lines
184 B
TypeScript
11 lines
184 B
TypeScript
import type { UserConfigExport } from "@tarojs/cli"
|
|
|
|
export default {
|
|
logger: {
|
|
quiet: false,
|
|
stats: true
|
|
},
|
|
mini: {},
|
|
h5: {}
|
|
} satisfies UserConfigExport<'webpack5'>
|