Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是 webpack 的新手,我似乎找不到使用 webpack 在 / 下提供 Apple Universal Links 文件的方法。
您能否建议如何让 /apple-app-site-association 工作?
如果你想通过 webpack 为 apple-app-site-association 提供服务,你可以添加 loader 并在 main.js 中为此文件添加导入,例如
{ test: /apple-app-site-association/, exclude: /node_modules/, loader: [ { loader:'file-loader', options: { name: '/[name]', } }] }