aboutsummaryrefslogtreecommitdiff
path: root/console/build.gradle.kts
blob: 61bed6ec34eb1ecdba4769e441cb75f65cc56165 (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:36374a0")
            implementation(npm("@fontsource/comic-mono", "^4.5.0"))
        }
    }
}