From a8dd05927a7ca3b34f7729604744a24375f3549f Mon Sep 17 00:00:00 2001 From: web <candymxq888@outlook.com> Date: 星期四, 10 四月 2025 17:28:34 +0800 Subject: [PATCH] fix:修改设备接口 --- vite.config.js | 28 ++++++---------------------- 1 files changed, 6 insertions(+), 22 deletions(-) diff --git a/vite.config.js b/vite.config.js index 95a3cb8..b191f63 100644 --- a/vite.config.js +++ b/vite.config.js @@ -1,11 +1,3 @@ -/* - * @Author: elkers dmhe0357 - * @Date: 2024-10-02 12:49:11 - * @LastEditors: Liuyi candymxq888@outlook.com - * @LastEditTime: 2024-11-09 09:44:02 - * @FilePath: \water-qinghe-web\vite.config.js - * @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE - */ import { defineConfig, loadEnv } from 'vite' import path from 'path' import createVitePlugins from './vite/plugins' @@ -47,20 +39,12 @@ }, //fix:error:stdin>:7356:1: warning: "@charset" must be the first rule in the file css: { - postcss: { - plugins: [ - { - postcssPlugin: 'internal:charset-removal', - AtRule: { - charset: (atRule) => { - if (atRule.name === 'charset') { - atRule.remove(); - } - } - } - } - ] - } + preprocessorOptions: { + css: { charset: false }, + scss: { + api: 'modern-compiler', + }, + }, } } }) -- Gitblit v1.9.3