woocommerce-paypal-payments/modules/ppcp-wc-gateway/webpack.config.js
2021-03-25 10:21:28 +02:00

24 lines
586 B
JavaScript

const path = require('path');
const isProduction = process.env.NODE_ENV === 'production';
debugger
module.exports = {
devtool: 'sourcemap',
mode: isProduction ? 'production' : 'development',
target: 'web',
entry: {
'gateway-settings': path.resolve('./resources/js/gateway-settings.js'),
},
output: {
path: path.resolve(__dirname, 'assets/'),
filename: 'js/[name].js',
},
module: {
rules: [{
test: /\.js?$/,
exclude: /node_modules/,
loader: 'babel-loader',
}]
}
};