10 lines
156 B
TypeScript
10 lines
156 B
TypeScript
|
|
import type { UserConfigExport } from "@tarojs/cli"
|
||
|
|
|
||
|
|
export default {
|
||
|
|
|
||
|
|
mini: {
|
||
|
|
debugReact: true,
|
||
|
|
},
|
||
|
|
h5: {}
|
||
|
|
} satisfies UserConfigExport<'vite'>
|