We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This rtlcss package how to use in Laravel vite.config.js, have you any suggestion ?? or demo code for that
The text was updated successfully, but these errors were encountered:
Hello @ravajihadiya
Accroding to this: #301 (comment)
You can configure postcss plugins inside postcss.config.js, to do that please follow the following steps:
npm install -D postcss-rtlcss
postcss.config.js
import postcssRTLCSS from 'postcss-rtlcss'; export default { plugins: [ postcssRTLCSS() ] }
Sorry, something went wrong.
Well @ravajihadiya did great explaining, but a bit of editing do the same steps as he wrote
Hello @ravajihadiya Accroding to this: #301 (comment) You can configure postcss plugins inside postcss.config.js, to do that please follow the following steps: Create postcss.config.js file in the root directory. Install postcss-rtl using npm install -D postcss-rtlcss Add the folowing lines inside postcss.config.js
Then put it like that in postcss.config.js:
export default { plugins: { autoprefixer: {}, 'postcss-nested': {}, 'postcss-rtlcss': {}. // --> Add this here and it will work }, };
No branches or pull requests
This rtlcss package how to use in Laravel vite.config.js, have you any suggestion ?? or demo code for that
The text was updated successfully, but these errors were encountered: