14 lines
228 B
TypeScript
14 lines
228 B
TypeScript
import type { UserConfigExport } from "@tarojs/cli"
|
|
|
|
export default {
|
|
logger: {
|
|
quiet: false,
|
|
stats: true
|
|
},
|
|
plugins: [
|
|
'@tarojs/plugin-mock'
|
|
],
|
|
mini: {},
|
|
h5: {}
|
|
} satisfies UserConfigExport<'webpack5'>
|