Skip to content

Can`t use prod.env.js variable in proxy config #1524

@aaburkov

Description

@aaburkov

prod.env.js

'use strict'
module.exports = {
  NODE_ENV: '"production"',
  ROOT_API: '"/api"'
}

config/index.js

'use strict'
// Template version: 1.3.1
// see http://vuejs-templates.github.io/webpack for documentation.
const path = require('path')
const port = 3000 
const apiPort = 4000

module.exports = {
  dev: {
    // Paths
    assetsSubDirectory: 'static',
    assetsPublicPath: '/',
    proxyTable: {
      [process.env.ROOT_API]: {
        target: `http://127.0.0.1:${apiPort}/`,
        changeOrigin: true,
        pathRewrite: {
          ['^' + process.env.ROOT_API]: ''
        }
      }
    },
...

And after build config in proxy object i get

undefined: {
        target: `http://127.0.0.1:4000/`,
        changeOrigin: true,
        pathRewrite: {
          ['^' + undefined ]: ''
        }
      }

How i can use env variables in config files?

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions