From fab4d7d62b2039ab8660649d26a8c6f8f32193b5 Mon Sep 17 00:00:00 2001 From: riku <risaku@163.com> Date: 星期四, 11 一月 2024 17:41:11 +0800 Subject: [PATCH] 1. 初步完成评估任务整体逻辑; 2. 新增评估记录下载功能(待完善) --- vite.config.js | 5 ++++- 1 files changed, 4 insertions(+), 1 deletions(-) diff --git a/vite.config.js b/vite.config.js index 4f220f0..121fef6 100644 --- a/vite.config.js +++ b/vite.config.js @@ -20,7 +20,7 @@ // allow auto load markdown components under `./src/components/` extensions: ['vue', 'md'], // allow auto import and register components used in markdown - include: [/\.vue$/, /\.vue\?vue/, /\.md$/], + include: [/\.vue$/, /\.vue\?vue/, /\.md$/, /\.ts$/], resolvers: [ ElementPlusResolver({ importStyle: 'sass' @@ -71,4 +71,7 @@ }, }, }, + server: { + host: '0.0.0.0' + } }); -- Gitblit v1.9.3