mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-08-30 05:00:51 +08:00
36 lines
1 KiB
JavaScript
36 lines
1 KiB
JavaScript
const path = require('path');
|
|
const isProduction = process.env.NODE_ENV === 'production';
|
|
|
|
module.exports = {
|
|
devtool: isProduction ? 'source-map' : 'eval-source-map',
|
|
mode: isProduction ? 'production' : 'development',
|
|
target: 'web',
|
|
entry: {
|
|
'status-page': path.resolve('./resources/js/status-page.js'),
|
|
'status-page-style': path.resolve('./resources/css/status-page.scss'),
|
|
},
|
|
output: {
|
|
path: path.resolve(__dirname, 'assets/'),
|
|
filename: 'js/[name].js',
|
|
},
|
|
module: {
|
|
rules: [{
|
|
test: /\.js?$/,
|
|
exclude: /node_modules/,
|
|
loader: 'babel-loader',
|
|
},
|
|
{
|
|
test: /\.scss$/,
|
|
exclude: /node_modules/,
|
|
use: [
|
|
{
|
|
loader: 'file-loader',
|
|
options: {
|
|
name: 'css/[name].css',
|
|
}
|
|
},
|
|
{loader:'sass-loader'}
|
|
]
|
|
}]
|
|
}
|
|
};
|