Search

fix: npm 오류 수정 [NTT-Front-03]

BacklogNumber
0
Domain
Issue
Status
Complete
생성 일시
2023/06/10 15:04
PS C:\repository\NTT_Frontend_Vue> npm run serve > frontend@0.1.0 serve > vue-cli-service serve INFO Starting development server... ERROR Failed to compile with 1 error 오전 12:03:55 [eslint] Failed to load config "standard" to extend from. Referenced from: C:\repository\NTT_Frontend_Vue\src\.eslintrc.js You may use special comments to disable some warnings. Use // eslint-disable-next-line to ignore the next line. Use /* eslint-disable */ to ignore all warnings in a file. ERROR in [eslint] Failed to load config "standard" to extend from. Referenced from: C:\repository\NTT_Frontend_Vue\src\.eslintrc.js webpack compiled with 1 error
JavaScript
복사
이 오류는 아마 vuetify 가 설치가 안 되어있는데 설치된파일을 읽어서 그런듯 하다. 오류를 무시할 수 있게 추가적으로 파일 작성후 커밋 완료\
vue.config.js
const { defineConfig } = require('@vue/cli-service') module.exports = defineConfig({ lintOnSave: false, transpileDependencies: [ 'vuetify' ] })
JavaScript
복사