mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-09-06 13:44:42 +08:00
13 lines
318 B
JavaScript
13 lines
318 B
JavaScript
|
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' ),
|
||
|
},
|
||
|
},
|
||
|
};
|