All Downloads are FREE. Search and download functionalities are using the official Maven repository.

config.Dump.kt Maven / Gradle / Ivy

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)
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy