RTL and LTR setup in a Vite Vue project #39512
Unanswered
RejownAhmed
asked this question in
Q&A
Replies: 1 comment 2 replies
-
Consider using Here's a basic setup, // postcss.config.js
import postcssRTLCSS from 'postcss-rtlcss';
export default {
plugins: {
['postcss-rtlcss']: postcssRTLCSS(),
},
} |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi, I am developing a vue website with bootstrap. I need rtl and ltr both functionality. Unfortunately, I don't find any good solutions anywhere, even the bootstrap doc is not very clear about it. Can you someone please help in this case?
Beta Was this translation helpful? Give feedback.
All reactions