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, + }, })