mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-08-31 06:52:50 +08:00
15 lines
238 B
JavaScript
15 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;
|