Browse Source
Merge pull request #8 from sapuser2017/patch-1
Update vite.config.js
master
若依
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
17 additions and
0 deletions
-
vite.config.js
|
|
|
@ -37,5 +37,22 @@ export default defineConfig(({ mode, command }) => { |
|
|
|
} |
|
|
|
}, |
|
|
|
}, |
|
|
|
//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(); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
], |
|
|
|
}, |
|
|
|
}, |
|
|
|
} |
|
|
|
}) |
|
|
|
|