@vue/cli-service
這包程式碼提供了開發、打包的指令。
使用vue cli建立的專案內建二了指令
{
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build"
}
}
vue-cli-service serve [options] [entry]
啟動開發站台
options
- --open 在服務器啟動時打開瀏覽器
- --copy 在服務器啟動時將 URL 複製到剪切版
- --mode 指定環境模式 (默認值:development)
- --host 指定 host (默認值:0.0.0.0)
- --port 指定 port (默認值:8080)
- --https 使用 https (默認值:false)
vue-cli-service build [options] [entry|pattern]
打包程式碼
options
- --mode 指定環境模式 (默認值:production)
- --dest 指定輸出目錄 (默認值:dist)
- --modern 面向現代瀏覽器帶自動回退地構建應用
- --target app | lib | wc | wc-async (默認值:app)
- --name 庫或 Web Components 模式下的名字 (默認值:package.json 中的 "name" 字段或入口文件名)
- --no-clean 在構建項目之前不清除目標目錄
- --report 生成 report.html 以幫助分析包內容
- --report-json 生成 report.json 以幫助分析包內容
- --watch 監聽文件變化
vue-cli-service inspect [options] [...paths]
檢查 vue cli 的 web config
沒有留言:
張貼留言