Is it possible to load a .txt file from the resources directory? I am recreating a small website I made in React using Compose for Web and am having a hard time recreating the following in Kotlin:
import TestVar from './files/TestFile.txt';
...
var text = TestVar.text();
Can I use the Kotlin/JS module system to recreate the above?