This commit is contained in:
2023-09-01 00:13:14 +08:00
parent 6710347935
commit 1b561212e8
12 changed files with 730 additions and 289 deletions

View File

@@ -1,10 +1,22 @@
import type { UserConfigExport } from "@tarojs/cli";
import type {UserConfigExport} from '@tarojs/cli'
export default {
logger: {
quiet: false,
stats: true
},
mini: {},
h5: {}
logger: {
quiet: false,
stats: true
},
mini: {},
h5: {
devServer: {
// proxy: {
// '/api': {
// target: 'http://localhost:3000',
// changeOrigin: true,
// pathRewrite: {
// '^/api': ''
// }
// }
// }
}
}
} satisfies UserConfigExport