vue-cli3.0相關的坑
阿新 • • 發佈:2018-12-15
vue-cli3.0相對比vue-cli2.0少了 vue-build.js vue-config.js
vue-cli2.0 執行命令 npm run dev
vue-cli3.0 執行命令 npm run serve
vue-cli3.0 要自己在專案根目錄下配置 vue-config.js
module.exports = { // baseUrl type:{string} default:'/' // 將部署應用程式的基本URL // 將部署應用程式的基本URL。 // 預設情況下,Vue CLI假設您的應用程式將部署在域的根目錄下。 // https://www.my-app.com/。如果應用程式部署在子路徑上,則需要使用此選項指定子路徑。例如,如果您的應用程式部署在https://www.foobar.com/my-app/,集baseUrl到'/my-app/'. baseUrl: './', // outputDir: 在npm run build時 生成檔案的目錄 type:string, default:'dist' outputDir: 'dist', // pages:{ type:Object,Default:undfind } /* 構建多頁面模式的應用程式.每個“頁面”都應該有一個相應的JavaScript條目檔案。該值應該是一 個物件,其中鍵是條目的名稱,而該值要麼是指定其條目、模板和檔名的物件,要麼是指定其條目 的字串, 注意:請保證pages裡配置的路徑和檔名 在你的文件目錄都存在 否則啟動服務會報錯的 */ // pages: { // index: { // entry for the page // entry: 'src/index/main.js', // the source template // template: 'public/index.html', // output as dist/index.html // filename: 'index.html' // }, // when using the entry-only string format, // template is inferred to be `public/subpage.html` // and falls back to `public/index.html` if not found. // Output filename is inferred to be `subpage.html`. // subpage: 'src/subpage/main.js' // }, // lintOnSave:{ type:Boolean default:true } 問你是否使用eslint lintOnSave: true, // productionSourceMap:{ type:Bollean,default:true } 生產源對映 // 如果您不需要生產時的源對映,那麼將此設定為false可以加速生產構建 productionSourceMap: false, // devServer:{type:Object} 3個屬性host,port,https // 它支援webPack-dev-server的所有選項 devServer: { port: 8085, // 埠號 host: 'localhost', https: false, // https:{type:Boolean} open: true, //配置自動啟動瀏覽器 // proxy: 'http://localhost:4000' // 配置跨域處理,只有一個代理 proxy: { '/api': { target: 'https://apiv2.pinduoduo.com', ws: true, changeOrigin: true }, '/foo': { target: '<other_url>' } }, // 配置多個代理 } }
vue在用HBuilder打包後 app啟動一片空白 3.0裡面的baseUrl 改成 baseUrl: './'
如果你安裝了vue-cli3.0卻要用cli2.0的話那麼你需要全域性安裝一個橋接工具 npm install -g @vue/cli-init
另外使用HBuilder將專案打包的時候發現自己的接口裡面的資料請求不到,其它靜態資源正常顯示。那是因為在開發階段瀏覽器需要解決跨域問題使用了反向代理,如果打包app需要將代理註釋,axios請求地址改為絕對路徑
原文地址:https://segmentfault.com/a/1190000016964485