We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d2f64fe commit 0816048Copy full SHA for 0816048
core/scripts/testing/scripts.js
@@ -48,6 +48,15 @@
48
document.head.appendChild(linkTag);
49
}
50
51
+ const utilsBundleLinkTag = document.querySelector('link[href*="css/utils.bundle.css"]');
52
+ if (!utilsBundleLinkTag) {
53
+ const linkTag = document.createElement('link');
54
+ linkTag.setAttribute('rel', 'stylesheet');
55
+ linkTag.setAttribute('type', 'text/css');
56
+ linkTag.setAttribute('href', '/css/utils.bundle.css');
57
+ document.head.appendChild(linkTag);
58
+ }
59
+
60
const defaultThemeLinkTag = document.querySelector('link[href*="css/ionic.bundle.css"]');
61
if (defaultThemeLinkTag) {
62
defaultThemeLinkTag.remove();
0 commit comments