반응형
Vue CLI 프로젝트가 vue.config.js를 읽지 않음
패키지를 깨끗하게 하기 위해 에일리어스를 작성하려고 하는데 vue.config.js 파일이 무시되고 있습니다.Vue v^2.6.11에서 Vue CLI를 사용하고 있습니다.
vue.config.config:
const path = require('path')
module.exports = {
configureWebpack: {
resolve: {
alias: {
'@vue-toggle-component': path.resolve(__dirname, 'src/components')
}
}
}
}
패키지.json:
{
"name": "vue-toggle-component",
"version": "0.1.1",
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint"
},
"dependencies": {
"core-js": "^3.6.5",
"node-sass": "^4.14.1",
"sass-loader": "^10.0.4",
"vue": "^2.6.11"
},
"devDependencies": {
"@vue/cli-plugin-babel": "~4.5.0",
"@vue/cli-plugin-eslint": "~4.5.0",
"@vue/cli-service": "~4.5.0",
"babel-eslint": "^10.1.0",
"eslint": "^6.7.2",
"eslint-plugin-vue": "^6.2.2",
"vue-template-compiler": "^2.6.11"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"eslint:recommended"
],
"parserOptions": {
"parser": "babel-eslint"
},
"rules": {}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
],
"description": "## Project setup ``` yarn install ```",
"main": "babel.config.js",
"repository": "git+https://github.com/nehlis/vue-toggle-component.git",
"keywords": [
"Vue.js",
"Toggle",
"Component",
"Lightweight",
"Checkbox"
],
"author": "Niels Bosman",
"license": "ISC",
"bugs": {
"url": "https://github.com/nehlis/vue-toggle-component/issues"
},
"homepage": "https://github.com/nehlis/vue-toggle-component#readme"
}
온라인으로 솔루션을 검색하면 모든 페이지에 Vue가 구성 파일을 읽어야 한다고 나와 있습니다.하지만 콘솔로깅을 시도했지만 출력이 없었기 때문에 그렇지 않습니다.이 일에 대해 더 아는 사람?
언급URL : https://stackoverflow.com/questions/64607411/vue-cli-project-not-reading-vue-config-js
반응형
'programing' 카테고리의 다른 글
vuex 저장소에 바인딩된 Vue 3 확인란이 선택 해제된 후 확인되지 않음 (0) | 2022.07.18 |
---|---|
Ubuntu에서 화살표 키를 누르면 단말기에 "^[A" "^[B" "^[C" "^[D"" 가 표시되는 이유는 무엇입니까? (0) | 2022.07.18 |
CSS에서 Vue CLI 빌드 운영 변경 불투명도 (0) | 2022.07.18 |
Vue - 객체 어레이를 자세히 감시하고 변경을 계산하고 있습니까? (0) | 2022.07.18 |
vue.for - v-for에서 동적으로 생성된 구성 요소가 바인딩된 속성을 올바르게 업데이트하지 않음 (0) | 2022.07.18 |