File "webpack.config.js"

Full Path: /home/warrior1/public_html/languages/wp-content/plugins/astra-sites/webpack.config.js
File size: 280 bytes
MIME-type: text/plain
Charset: utf-8

const RtlCssPlugin = require( 'rtlcss-webpack-plugin' );
const defaultConfig = require( '@wordpress/scripts/config/webpack.config' );

module.exports = {
	...defaultConfig,
	plugins: [
		...defaultConfig.plugins,
		new RtlCssPlugin( {
			filename: `[name]-rtl.css`,
		} ),
	],
};