How do I set the filename to `index.js` in a multi...
# javascript
m
How do I set the filename to
index.js
in a multiplatform project? I tried it like this but it still uses the project name instead:
Copy code
js("frontend", IR) {
        binaries.executable()
        browser {
            commonWebpackConfig {
                cssSupport.enabled = true
                output?.library = "index"  // tell it to generate as index.js
            }
        }
    }
t