You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ecmwf-dataset-crawl/frontend/config/dev.env.js

15 lines
379 B
JavaScript

'use strict'
const merge = require('webpack-merge')
const prodEnv = require('./prod.env')
module.exports = merge(prodEnv, {
host: '0.0.0.0',
NODE_ENV: '"development"',
API_URL: process.env.API_URL
? `"${process.env.API_URL}"`
: '"http://localhost:9000"',
KIBANA_URL: process.env.KIBANA_URL
? `"${process.env.KIBANA_URL}"`
: '"http://localhost:5601"',
})