23 lines
412 B
TypeScript
23 lines
412 B
TypeScript
import type { UserConfigExport } from '@tarojs/cli'
|
|
|
|
export default {
|
|
logger: {
|
|
quiet: false,
|
|
stats: true,
|
|
},
|
|
mini: {},
|
|
h5: {
|
|
devServer: {
|
|
// proxy: {
|
|
// '/api': {
|
|
// target: 'http://localhost:3000',
|
|
// changeOrigin: true,
|
|
// pathRewrite: {
|
|
// '^/api': ''
|
|
// }
|
|
// }
|
|
// }
|
|
},
|
|
},
|
|
} satisfies UserConfigExport
|