방법: 1. "configindex.js" 폴더에서 "port" 항목의 내용을 수정합니다. "port"는 포트 번호를 의미합니다. 이 방법은 VUE 프로젝트 시작 포트 번호를 영구적으로 수정할 수 있습니다. 내보내기" ={devServer:{포트:포트 번호,}"가 수정되었습니다.
이 기사의 운영 환경: Windows 10 시스템, Vue 버전 2.9.6, DELL G3 컴퓨터.
1.Vue 2.x
config 폴더에 index.js가 있는데 그 일부는 다음과 같습니다. port는 포트 번호입니다. 여기서 바꾸세요.
module.exports = { dev: { env: require('./dev.env'), port: 8080, // 端口号 assetsSubDirectory: 'static', assetsPublicPath: '/', proxyTable: {}, // CSS Sourcemaps off by default because relative paths are "buggy" // with this option, according to the CSS-Loader README // (https://github.com/webpack/css-loader#sourcemaps) // In our experience, they generally work as expected, // just be aware of this issue when enabling this option. cssSourceMap: false, } };
2.Vue 3.x
Vue 3.x에서 포트 번호를 수정하려면 프로젝트 루트 디렉터리에 vue.config.js를 만들어야 하며 내용은 다음과 같습니다. .
module.exports = { devServer: { port: 8080, // 端口号 } };
【관련 추천: "vue.js tutorial"】
위 내용은 Vue 프로젝트에서 포트 번호를 수정하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!