mirror of
https://github.com/aleleba/create-react-ssr.git
synced 2025-01-10 05:56:56 -06:00
8 lines
198 B
JavaScript
8 lines
198 B
JavaScript
|
require('dotenv').config();
|
||
|
|
||
|
const config = {
|
||
|
portDev: process.env.PORT_DEV ? process.env.PORT_DEV : 3000,
|
||
|
portReloadDev: process.env.PORT_RELOAD_DEV,
|
||
|
}
|
||
|
|
||
|
module.exports = { config: config };
|