浏览器同步配置:
{
server: {
baseDir: [
conf.paths.tmp,
conf.paths.src
],
middleware: [
historyFallback()
]
},
open: false
}
这非常适合让我在http://localhost/app/path/long而不是http://localhost/#/上运行我的应用程序,但是当我请求http://localhost/app/path/long/files/image1.png
时,我得到了404,因为图像是在{{1 }}。
如何配置browsersync以在其他路径上静态提供目录?