10 lines
217 B
TypeScript
10 lines
217 B
TypeScript
import type { UserConfigExport } from "@tarojs/cli"
|
|
|
|
export default {
|
|
defineConstants: {
|
|
TARO_APP_API_BASE: JSON.stringify("http://localhost:3000")
|
|
},
|
|
mini: {},
|
|
h5: {}
|
|
} satisfies UserConfigExport<'vite'>
|