[JS] SyntaxError: Invalid shorthand property initializer

설정·2021년 1월 16일
0

ERROR

목록 보기
6/10

🚫 Error Contents

SyntaxError: Invalid shorthand property initializer

👁 Situation

config.js에서 변수 설정 후 node 실행 시 에러 발생

🔎 Cause

config.js 변수 설정 시 = 사용

📝 Solution

초기 변수 설정 시 :를 사용

// config.js

module.exports = {
  BUCKET_NAME : 'bucket'
}

0개의 댓글