mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-08-30 05:00:51 +08:00
14 lines
238 B
JavaScript
14 lines
238 B
JavaScript
/**
|
|
* Read environment variables from file.
|
|
* https://github.com/motdotla/dotenv
|
|
*/
|
|
require('dotenv').config();
|
|
|
|
const config = {
|
|
timeout: 30000,
|
|
use: {
|
|
baseURL: process.env.BASEURL,
|
|
},
|
|
};
|
|
|
|
module.exports = config;
|