溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

修改vue+webpack run build的路徑方法

發(fā)布時間:2020-10-02 19:10:46 來源:腳本之家 閱讀:144 作者:若晨工作室 欄目:web開發(fā)

vue項(xiàng)目用webpack打包想要修改靜態(tài)資源路徑等,找到項(xiàng)目根目錄下的config文件夾,打開該文件夾下的index.js文件,默認(rèn)如下:

// see http://vuejs-templates.github.io/webpack for documentation.
var path = require('path')

module.exports = {
 build: {
 env: require('./prod.env'),
 index: path.resolve(__dirname, '../dist/index.html'),
 assetsRoot: path.resolve(__dirname, '../dist'),
 assetsSubDirectory: 'static',
 assetsPublicPath: '/',
 productionSourceMap: true,
 // Gzip off by default as many popular static hosts such as
 // Surge or Netlify already gzip all static assets for you.
 // Before setting to `true`, make sure to:
 // npm install --save-dev compression-webpack-plugin
 productionGzip: false,
 productionGzipExtensions: ['js', 'css'],
 // Run the build command with an extra argument to
 // View the bundle analyzer report after build finishes:
 // `npm run build --report`
 // Set to `true` or `false` to always turn it on or off
 bundleAnalyzerReport: process.env.npm_config_report
 },
 dev: {
 env: require('./dev.env'),
 port: 8080,
 autoOpenBrowser: true,
 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
 }
}

其中build.index:必須是本地文件系統(tǒng)上的絕對路徑。會生成index.html文件。

build.assetsRoot:必須是本地文件系統(tǒng)上的絕對路徑。

build.assetsSubDirectory:編譯出來的資源文件。

build.assetsPublicPath:【資源的根目錄】,這是通過http服務(wù)器運(yùn)行的url路徑。默認(rèn)情況下,是根目錄(/)。如果后臺對靜態(tài)資源url前綴要求,則需要改變這個路徑。

build.productionSourceMap:在構(gòu)建生產(chǎn)環(huán)境版本時是否開啟source map。

以上這篇修改vue+webpack run build的路徑方法就是小編分享給大家的全部內(nèi)容了,希望能給大家一個參考,也希望大家多多支持億速云。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI