提交 b37fcbb5 编写于 作者: A Alex Castle 提交者: Tim Neutkens

Prevent CSS script tags in granular chunks (#9306)

* Don't add script tags for css files on client side navigation with granular chunks

* Filter for JS, instead of against CSS
上级 9defdd0a
......@@ -98,7 +98,7 @@ export default class PageLoader {
if (process.env.__NEXT_GRANULAR_CHUNKS) {
this.getDependencies(route).then(deps => {
deps.forEach(d => {
if (!document.querySelector(`script[src^="${d}"]`)) {
if (/\.js$/.test(d) && !document.querySelector(`script[src^="${d}"]`)) {
this.loadScript(d, route, false)
}
})
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册