10 lines
172 B
TypeScript
10 lines
172 B
TypeScript
import type { UserConfigExport } from "@tarojs/cli";
|
|
export default {
|
|
logger: {
|
|
quiet: false,
|
|
stats: true
|
|
},
|
|
mini: {},
|
|
h5: {}
|
|
} satisfies UserConfigExport
|