woocommerce-paypal-payments/modules/ppcp-settings/webpack.config.js

13 lines
318 B
JavaScript
Raw Normal View History

2024-10-18 17:17:07 +02:00
const defaultConfig = require( '@wordpress/scripts/config/webpack.config' );
const path = require( 'path' );
module.exports = {
...defaultConfig,
...{
entry: {
index: path.resolve( process.cwd(), 'resources/js', 'index.js' ),
style: path.resolve( process.cwd(), 'resources/css', 'style.scss' ),
},
},
};