[컴] nuxtjs 에서 process.env 사용하기

 

nuxtjs 에서 process.env 사용하기

nuxt.config.js 에 변수에 넣어서 사용한다. this.$config.DEBUG 를 vue component 에서 사용하면 된다.

export default {
  // Public env variables that are exposed on the frontend.
  publicRuntimeConfig: {
    // this.$config.DEBUG
    DEBUG: process.env.DEBUG,
  },
  // Private env variables that are not be exposed on the frontend.
  privateRuntimeConfig: {

  },
  ...
}

댓글 없음:

댓글 쓰기