WARNING
All customization instructions will refer to changes made within your customization layer folder.
Branding Customization
Favicon
Create
publicfolder inside your layer (if missing).Place your favicon inside the
publicfolder and ensure it is namedfavicon.ico.
Web application title
Create
nuxt.config.tsinside your layer (if missing).Replace "Your app name" with your app's name and add the following code:
js
app: {
head: {
title: 'Your app name'
}
}Theme color
Create
uno.config.tsinside your layer (if missing).For example, to change the primary color to
#000000, add the following code:
js
theme: {
colors: {
primary: {
DEFAULT: '#000000'
}
}
}- Refer to the
uno.config.tsfile in the dsr layer to understand the key structure for overriding colors.