">dotui.json
file holds configuration for your project.
We use it to understand how your project is set up and how to generate components customized for your project.
After running the init command, you’ll have a new dotui.json
file in your directory:
{
"$schema": "https://dotui.org/schema.json",
"aliases": {
"components": "@/components",
"utils": "@/lib/utils",
"core": "@/lib/core",
"lib": "@/lib",
"hooks": "@/hooks"
},
"style": {
"iconLibrary": "lucide",
"componentsOverrides": {
"button": "button-01"
}
}
}
The $schema
field is used to validate the configuration file.
Aliases are used to map the default import paths to your project's paths.
The style
object is used to configure the project's style.
Key | Type | Description |
---|---|---|
iconLibrary | "lucide" | "phosphor" | "remix" | The icon library to use. |
componentsOverrides | Record<string, string> | The component overrides to use. |