You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Suppose I have two HTML files (index.html & about.html); For the injection, I don't want both to share same .js and .css files. I only want index.js & index.css to be injected into index.html, and about.js & about.css into about.html. I think the best way to do it is using the transform() option, but how?
The text was updated successfully, but these errors were encountered:
I once tried to return templated <link> and <script> tags using transform() and I found out that the method itself is what prevents the compiling of stylesheets.
Suppose I have two HTML files (
index.html
&about.html
); For the injection, I don't want both to share same.js
and.css
files. I only wantindex.js
&index.css
to be injected intoindex.html
, andabout.js
&about.css
intoabout.html
. I think the best way to do it is using thetransform()
option, but how?The text was updated successfully, but these errors were encountered: