Daniel Perez
12/13/2021, 5:07 AMimport TestVar from './files/TestFile.txt';
...
var text = TestVar.text();
Can I use the Kotlin/JS module system to recreate the above?Akif Abasov [JB]
12/13/2021, 1:39 PMAkif Abasov [JB]
12/13/2021, 1:41 PM@JsModule("./files/TestFile.txt")
@JsNonModule
external object MyText
and related loader in webpack (maybe latest webpack can do it out of the box - i don’t know its current state)Akif Abasov [JB]
12/13/2021, 1:42 PM