Fix vite deprecations (#2885)

I wasn't able to fully migrate to esmodules because eslint fails then.
Thus there's still a deprecation warning when running vite.
(https://vitejs.dev/guide/troubleshooting.html#vite-cjs-node-api-deprecated)
This commit is contained in:
qwerty287 2023-11-29 13:40:51 +01:00 committed by GitHub
parent b6465751e8
commit 00a9d96247
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -29,8 +29,8 @@ function externalCSSPlugin() {
return {
name: 'external-css',
transformIndexHtml: {
enforce: 'post',
transform() {
order: 'post',
handler() {
return [
{
tag: 'link',