ЛЛ
Size: a a a
ЛЛ
AN
AN
AN
ЛЛ
ЛЛ
AN
AN
ЛЛ
DCE does not perform minification (uglification) of your code by removing unnecessary whitespaces and shortening identifiers. You should use existing tools, like UglifyJS or Google Closure Compiler for this purpose.
AN
DCE does not perform minification (uglification) of your code by removing unnecessary whitespaces and shortening identifiers. You should use existing tools, like UglifyJS or Google Closure Compiler for this purpose.
AN
AN
ЛЛ
plugins {
id 'org.jetbrains.kotlin.js' version '1.3.60'
}
group 'org.example'
version '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-js"
testImplementation "org.jetbrains.kotlin:kotlin-test-js"
}
apply plugin: 'kotlin-dce-js'
kotlin.target.browser { }
ЛЛ
AN
AN
tasks{
val jsBrowserWebpack by getting(KotlinWebpack::class) {
sourceMaps = false
}
}
AN
ЛЛ
tasks{
val jsBrowserWebpack by getting(KotlinWebpack::class) {
sourceMaps = false
}
}
ЛЛ
AN