guys, can anybody explain why this works? ```kotli...
# javascript
d
guys, can anybody explain why this works?
Copy code
kotlinext.js.require("App.css")
while this doesn't:
Copy code
@JsModule("App.css")
external interface AppCss
am i doing it wrong?
a
Do you use the
AppCss
? I think unless you do, the
require
call is not generated.
👍🏽 2