From f2cc6e0b787b6d6a92e96547b0266fff05fa36d7 Mon Sep 17 00:00:00 2001 From: aaron <> Date: Fri, 25 Apr 2025 11:22:36 +0800 Subject: [PATCH] update --- index.html | 2 +- package.json | 1 + src/App.vue | 3 +- src/components/TheWelcome.vue | 26 +- src/components/icons/IconCommunity.vue | 7 - src/router/index.ts | 5 - src/views/AIAgentView.vue | 2 +- src/views/CommunityView.vue | 716 ------------------------- src/views/HomeView.vue | 38 +- vite.config.ts | 18 +- 10 files changed, 23 insertions(+), 795 deletions(-) delete mode 100644 src/components/icons/IconCommunity.vue delete mode 100644 src/views/CommunityView.vue diff --git a/index.html b/index.html index bc58e9a..d81196a 100644 --- a/index.html +++ b/index.html @@ -4,7 +4,7 @@ - Crypto AI - 加密货币工具与社区平台 + Crypto AI - 加密货币AI服务平台 diff --git a/src/views/HomeView.vue b/src/views/HomeView.vue index 289768f..dd38253 100644 --- a/src/views/HomeView.vue +++ b/src/views/HomeView.vue @@ -5,42 +5,14 @@

Crypto.AI 加密货币工具平台

-

一站式加密货币工具集合、AI分析和社区互动平台

-
+

一站式加密货币工具集合和AI分析平台

+
-
-

平台数据

-

实时数据

-
10,000+
@@ -50,10 +22,6 @@
5,000+
项目已分析
-
-
20,000+
-
社区成员
-
99.9%
正常运行时间
diff --git a/vite.config.ts b/vite.config.ts index d49d708..af43c3c 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -7,14 +7,20 @@ import vueDevTools from 'vite-plugin-vue-devtools' // https://vite.dev/config/ export default defineConfig({ - plugins: [ - vue(), - vueJsx(), - vueDevTools(), - ], + plugins: [vue(), vueJsx(), vueDevTools()], resolve: { alias: { - '@': fileURLToPath(new URL('./src', import.meta.url)) + '@': fileURLToPath(new URL('./src', import.meta.url)), }, }, + build: { + minify: 'terser', + terserOptions: { + compress: { + drop_console: true, + drop_debugger: true, + }, + }, + sourcemap: false, + }, })