Skip to content

Commit 9a25dd4

Browse files
committed
Fix "Css support is deprecated"
1 parent 9b17175 commit 9a25dd4

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# Kotlin
66
version=1.6.4-SNAPSHOT
77
group=org.jetbrains.kotlinx
8-
kotlin_version=1.7.20-Beta-54
8+
kotlin_version=1.8.0-dev-1547
99

1010
# Dependencies
1111
junit_version=4.12

js/example-frontend-js/build.gradle.kts

+3-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,9 @@ kotlin {
1010
directory = directory.parentFile.resolve("dist")
1111
}
1212
commonWebpackConfig {
13-
cssSupport.enabled = true
13+
cssSupport {
14+
enabled.set(true)
15+
}
1416
}
1517
testTask {
1618
useKarma {

0 commit comments

Comments
 (0)