VuiAdmin docs
Customization

Configuration

Environment variables in the VuiAdmin admin dashboard template, for rebranding the footer without editing components.

There is almost nothing to configure, because every screen renders from fixtures. No API to point at, no database, nothing secret.

The footer is the exception. A team shipping this template is not VILIHA, and saying so should be two keys rather than a component edit.

The two keys

EditionKeys
React, Vue, AngularVITE_SITE_NAME, VITE_SITE_URL
Next.jsNEXT_PUBLIC_SITE_NAME, NEXT_PUBLIC_SITE_URL
HTMLEdit the footer markup; there is no build step to read a variable
LaravelAPP_NAME in .env
cp .env.local.example .env.local
VITE_SITE_NAME=Acme Inc.
VITE_SITE_URL=https://acme.example

Both have working defaults, so leaving them unset is fine.

Read at build time

These are public, build-time variables. They are inlined into the bundle, so setting them at runtime has no effect: set them where your deploy runs the build.

The name is rendered verbatim rather than through an uppercase class, because casing is part of how a company writes its own name.

Behaviour

The free editions keep behaviour in the components rather than in a configuration layer. If you want a row click to open the edit panel instead of the detail view, that is an edit to the screen, and the screen is a file you can read in one sitting.

On this page