From ce1292c9cf37195b6abd2699dfc5d6cb3e143c9b Mon Sep 17 00:00:00 2001
From: wanshenmean <cathay_xy@163.com>
Date: 星期日, 12 四月 2026 23:38:19 +0800
Subject: [PATCH] feat(MES): 添加MES接口相关实体和DTO JS扩展文件至JSX格式并更新配置

---
 Code/WCS/WIDESEAWCS_Client/vite.config.mjs |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/Code/WCS/WIDESEAWCS_Client/vite.config.js b/Code/WCS/WIDESEAWCS_Client/vite.config.mjs
similarity index 91%
rename from Code/WCS/WIDESEAWCS_Client/vite.config.js
rename to Code/WCS/WIDESEAWCS_Client/vite.config.mjs
index 584cc4c..11364ec 100644
--- a/Code/WCS/WIDESEAWCS_Client/vite.config.js
+++ b/Code/WCS/WIDESEAWCS_Client/vite.config.mjs
@@ -1,11 +1,12 @@
 import { defineConfig } from 'vite'
-import vue from '@vitejs/plugin-vue' 
+import vue from '@vitejs/plugin-vue'
+import vueJsx from '@vitejs/plugin-vue-jsx'
 import { fileURLToPath, URL } from 'node:url'
 
 const __dirname = fileURLToPath(new URL('.', import.meta.url))
 
 export default defineConfig({
-  plugins: [vue()],
+  plugins: [vue(), vueJsx()],
   
   server: {
     host: '0.0.0.0',

--
Gitblit v1.9.3