aboutsummaryrefslogtreecommitdiff
path: root/console/build.gradle.kts
blob: 7e82b28096f87ab1d5f13627a93d2db74128e0ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
plugins {
    kotlin("multiplatform") version "1.7.10"

}

repositories {
    mavenCentral()
    mavenLocal()
    maven("https://jitpack.io")
}

kotlin {
    js(IR) {
        browser {
            binaries.executable()
            commonWebpackConfig {
                sourceMaps = true
                cssSupport.enabled = true
            }
        }
    }
    sourceSets.named("jsMain") {
        dependencies {
            implementation("com.github.romangraef:neamoe:8969cee")
            implementation(npm("@fontsource/comic-mono", "^4.5.0"))
        }
    }
}