-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
36 lines (35 loc) · 927 Bytes
/
build.gradle
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
33
34
35
36
plugins {
id 'org.jetbrains.kotlin.js' version '1.4.10'
}
group = 'alfred.fabhotels'
version = '1.0-SNAPSHOT'
repositories {
mavenCentral()
jcenter()
maven {
url 'https://dl.bintray.com/kotlin/kotlinx'
}
maven {
url 'https://dl.bintray.com/kotlin/kotlin-js-wrappers'
}
}
dependencies {
implementation 'org.jetbrains.kotlinx:kotlinx-html-js:0.7.2'
implementation 'org.jetbrains:kotlin-react:16.13.1-pre.110-kotlin-1.4.10'
implementation 'org.jetbrains:kotlin-react-dom:16.13.1-pre.110-kotlin-1.4.10'
implementation 'org.jetbrains:kotlin-styled:1.0.0-pre.110-kotlin-1.4.10'
implementation npm("firebase", "7.12.0")
}
kotlin {
js {
browser {
binaries.executable()
webpackTask {
cssSupport.enabled = true
}
runTask {
cssSupport.enabled = true
}
}
}
}