webpack拾忆
栏目: JavaScript · 发布时间: 5年前
-
output.path [string]
output 目录对应一个绝对路径, 表示 build 后的文件存放位置 -
output.pathinfo [boolean]
告诉 webpack 在 bundle 中引入「所包含模块信息」的相关注释。此选项默认值是 false -
output.publicPath [string function]
生成的文件注入到 html 文件时的公开 URL.
默认值是一个空字符串 “”,相对 URL(relative URL) 会被相对于 HTML 页面(或标签)解析.
在启用devServer.historyApiFallback,很可能需要调整这个参数
publicPath: "https://cdn.example.com/assets/", // CDN(总是 HTTPS 协议) publicPath: "//cdn.example.com/assets/", // CDN (协议相同) publicPath: "/assets/", // 相对于服务(server-relative) publicPath: "assets/", // 相对于 HTML 页面 publicPath: "../assets/", // 相对于 HTML 页面 publicPath: "", // 相对于 HTML 页面(目录相同)
devServer
-
devServer.contentBase [boolean string array]
告诉服务器从哪里提供内容。只有在你想要提供静态文件时才需要 -
devServer.public
devServer.inline为true时表示内联,
但是内联的客户端脚本并不总是知道要连接到什么地方, 比如被nginx代理了,并在my.test.com可用。
它会尝试根据 window.location 来猜测服务器的 URL,但是如果失败,你需要这样。
public: "myapp.test:80"
-
devServer.publicPath [string]
指定静态资源的路径,此路径下的打包文件可在浏览器中访问
publicPath: "/assets/"
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网
猜你喜欢:本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
Clever Algorithms
Jason Brownlee / lulu.com / 2012-6-15 / USD 37.99
Download : http://www.lulu.com/product/file-download/clever-algorithms-nature-inspired-programming-recipes/14696557 Read free on line:http://www.cleveralgorithms.com/nature-inspired/index.html T......一起来看看 《Clever Algorithms》 这本书的介绍吧!