From 7b85e78bccbe0c01299c21269d4a1b0e972824db Mon Sep 17 00:00:00 2001 From: afc163 Date: Tue, 25 Nov 2025 11:19:26 +0800 Subject: [PATCH 1/2] chore: Migrate from now.json to vercel.json Updated configuration to use 'umijs' framework. --- now.json | 13 ------------- vercel.json | 3 +++ 2 files changed, 3 insertions(+), 13 deletions(-) delete mode 100644 now.json create mode 100644 vercel.json diff --git a/now.json b/now.json deleted file mode 100644 index 4f656562a..000000000 --- a/now.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "version": 2, - "name": "rc-select", - "builds": [ - { - "src": "package.json", - "use": "@now/static-build", - "config": { - "distDir": "dist" - } - } - ] -} diff --git a/vercel.json b/vercel.json new file mode 100644 index 000000000..cc12e4054 --- /dev/null +++ b/vercel.json @@ -0,0 +1,3 @@ +{ + "framework": "umijs" +} From dfbe10115bd9bf899511472a64a480aebf531348 Mon Sep 17 00:00:00 2001 From: afc163 Date: Tue, 25 Nov 2025 11:41:27 +0800 Subject: [PATCH 2/2] Add outputPath to themeConfig in .dumirc.ts --- .dumirc.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/.dumirc.ts b/.dumirc.ts index cc7fe090a..deac20b5a 100644 --- a/.dumirc.ts +++ b/.dumirc.ts @@ -6,4 +6,5 @@ export default defineConfig({ name: 'Select', logo: 'https://avatars0.githubusercontent.com/u/9441414?s=200&v=4', }, + outputPath: '.doc', });