mirror of
https://gh.wpcy.net/https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2026-04-26 01:14:19 +08:00
16 lines
302 B
JavaScript
16 lines
302 B
JavaScript
const defaultConfig = require( '@wordpress/scripts/config/webpack.config' );
|
|
const path = require( 'path' );
|
|
|
|
module.exports = {
|
|
...defaultConfig,
|
|
cache: false,
|
|
...{
|
|
entry: {
|
|
'recaptcha-handler': path.resolve(
|
|
process.cwd(),
|
|
'resources/js',
|
|
'recaptcha-handler.js'
|
|
),
|
|
},
|
|
},
|
|
};
|