vue.config.js_20211227

팡태(❁´◡`❁)·2021년 12월 27일
0

vue2

목록 보기
11/26

가장 바깥폴더!!

module.exports = {
    devServer: {
        proxy: {
            // 백엔드의 http://localhost:3000이
            // vue에서 url 주소를 생략하여 사용가능 하도록 설정
           '/board': {
                target: 'http://localhost:3000',
                ChangeOrigin: true,
                logLevel: 'debug'
            }
        }
    }
}

0개의 댓글