- 新增文章添加/编辑页面(add.tsx) - 新增用户地址添加/编辑页面(add.tsx) - 新增经销商申请页面(add.tsx) - 添加相关配置文件(.editorconfig, .eslintrc, .gitignore)
14 lines
251 B
TypeScript
14 lines
251 B
TypeScript
import type { UserConfigExport } from "@tarojs/cli";
|
|
export default {
|
|
logger: {
|
|
quiet: false,
|
|
stats: true
|
|
},
|
|
mini: {
|
|
miniCssExtractPluginOption: {
|
|
ignoreOrder: true
|
|
}
|
|
},
|
|
h5: {}
|
|
} satisfies UserConfigExport<'webpack5'>
|