Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .github/workflows/preview-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ jobs:
- name: build
run: |
yarn
yarn add umi-plugin-pro --save
yarn build

- name: upload dist artifact
Expand Down
1 change: 0 additions & 1 deletion biome.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
"ignoreUnknown": true,
"includes": [
"**/*",
"**/.github/**",
"!**/.umi/**",
"**/*.md",
"!**/.umi-production/**",
Expand Down
2 changes: 1 addition & 1 deletion src/requestErrorConfig.ts
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ export const errorConfig: RequestConfig = {
requestInterceptors: [
(config: RequestOptions) => {
// 拦截请求配置,进行个性化处理。
const url = config?.url?.concat('?token = 123');
const url = config?.url?.concat('?token=123');
return { ...config, url };
},
],
Expand Down
Loading