config.Dump.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vite-base Show documentation
Show all versions of vite-base Show documentation
Gradle plugin to use Vite
package opensavvy.gradle.vite.base.config
import opensavvy.gradle.vite.base.dump.DumpDsl
fun DumpDsl.dumpViteConfig(config: ViteConfig) {
section("Top-level") {
value("Vite version", config.version)
value("Plugins", config.plugins)
value("Root", config.root)
value("Base", config.base)
}
section("Build") {
value("Target", config.build.target)
}
}