mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-11-27 16:54:04 +00:00
Add RTL direction support to styles using postcss & rtlcss
This commit is contained in:
parent
f41e95921f
commit
15c4a8fb02
1 changed files with 11 additions and 1 deletions
|
@ -2,6 +2,9 @@ import legacy from "@vitejs/plugin-legacy"
|
||||||
import vue from "@vitejs/plugin-vue"
|
import vue from "@vitejs/plugin-vue"
|
||||||
import { defineConfig } from "vite"
|
import { defineConfig } from "vite"
|
||||||
|
|
||||||
|
const postCssScss = require("postcss-scss")
|
||||||
|
const postcssRTLCSS = require('postcss-rtlcss');
|
||||||
|
|
||||||
// https://vitejs.dev/config/
|
// https://vitejs.dev/config/
|
||||||
export default defineConfig({
|
export default defineConfig({
|
||||||
plugins: [
|
plugins: [
|
||||||
|
@ -10,5 +13,12 @@ export default defineConfig({
|
||||||
targets: ["ie > 11"],
|
targets: ["ie > 11"],
|
||||||
additionalLegacyPolyfills: ["regenerator-runtime/runtime"]
|
additionalLegacyPolyfills: ["regenerator-runtime/runtime"]
|
||||||
})
|
})
|
||||||
]
|
],
|
||||||
|
css: {
|
||||||
|
postcss: {
|
||||||
|
"parser": postCssScss,
|
||||||
|
"map": false,
|
||||||
|
"plugins": [postcssRTLCSS]
|
||||||
|
}
|
||||||
|
},
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in a new issue