I'm getting ```Uncaught TypeError: Cannot set prop...
# javascript
c
I'm getting
Copy code
Uncaught TypeError: Cannot set properties of undefined (setting 'webpackHotUpdatekotlin_example')
    at kotlin-example.js:898:51
    at kotlin-example.js:1368:13
    at kotlin-example.js:1380:12
    at webpackUniversalModuleDefinition (kotlin-example.js:17:28)
    at kotlin-example.js:18:3
when running a Kotlin/JS 1.8.10 basic project… did I mess some configuration up? My Gradle is just
Copy code
plugins {
    kotlin("js") version "1.8.10"
}

repositories {
    mavenCentral()
}

kotlin {
    js(IR) {
        browser()
        binaries.executable()
    }
}
which I believe has everything necessary for a simple webpage?