Webpack中publicPath設置

webpack中的path是當咱們build的時候,輸出項目打包文件的位置。css

webpack中的publicPath是咱們打算放到web服務器下的目錄,若是咱們要放到網站的根目錄下,那麼就無需設置。若是要放到站點的其它路徑,就能夠經過設置publicPath來實現。webpack

這樣當運行的時候,請求的其它js, css等資源,就會添加上這個路徑。web

output: {
path: helpers.root('dist'),
filename: '[name].[chunkhash].bundle.js',
sourceMapFilename: '[name].[chunkhash].bundle.map',
chunkFilename: '[id].[chunkhash].chunk.js',
publicPath: '/front/'
},
相關文章
相關標籤/搜索