rtl css loader module for webpack
npm install rtl-css-loaderdir attribute on the html tag on the page, then injects either the regular css or the rtl'ized css.
npm install rtl-css-loader --save-dev
javascript
module.exports = {
module: {
loaders: [
{
test: /\.css$/,
loaders: ['style', 'rtl-css']
},
]
}
};
``