console.log(process.env.test);
displays "undefined" in the console.
In the dev.env.js file, I have the following configuration. Do you see anything that I might have overlooked?
'use strict'
const merge = require('webpack-merge')
const prodEnv = require('./prod.env')
module.exports = merge(prodEnv, {
NODE_ENV: '"development"',
TEST: '"http://localhost/api"'
})