Home
NextSaaS

Configuration

Here is the default arrangement and essential parameters for your site. You can change those according to your necessities.

Default Configuration#

In the project folder, there is a file named hugo.toml. Open the file in any text editor to change the configuration.

  • baseURL field for your site URL/area. Add your site URL here.
  • languageCode characterizes your worldwide site language. For more data, see Official Hugo Docs.
  • title is the main title of your site.
  • theme sets up the used theme. Open aplio/themes folder, you will get another folder. That will be the theme name aplio. Copy that name and use it here to set up the theme.
  • pagination is to show pagination after a certain no. of products or items.
  • [build] is to set environement for buil the site
  • [[menus.main]] is to control the navigation. You can change it and give it a different directory. to set a chiled menu item, add a identifier name for the parent. Then add a parent parameter and give the identifier name as the value of it.
  • [[menus.mobile]] is used for the mobile menus.
  • [[menus.company]] is used for the footer links for the company section.
  • [[menus.support]] is used for the footer links for the support section.
  • [[menus.policy]] is used for the footer links for the policy section.
baseURL = 'https://nextsaas-hugo.vercel.app'
languageCode = 'en-US'
title = 'NextSaas'
theme = 'nextsaas'
pagination = { pagerSize = 9 }[build][build.buildStats]
enable = true[[build.cachebusters]]
source = 'assets/notwatching/hugo_stats\.json'
target = 'css'[[build.cachebusters]]
source = '(postcss|tailwind)\.config\.js'
target = 'css'[taxonomies]
jobFeature = 'jobFeatures'
tag = 'tags'
category = 'categories'

Parameter Configuration

  • logoMain, logoMainDark, logoMainLight, logo, logoDark parameter is for the site logo. These logos ares used for the light/dark background, footer logo, navabar version logo.
  • footerDescription used for the description for the footer section.
  • copyright used for the copyright declartion
  • contactMail emmail for the footer and contact page.
  • contactNumber contact number for the footer section and contact page.
  • contactAddress address for the footer section and contact page.
  • facebookLink Facebook Link for the footer section.
  • instagramLink Intagram Link for the footer section.
  • linkedinLink Linkedin Link Link for the footer section.
  • behanceLink Behance Link Link for the footer section.
  • githubLink Github Link Link for the footer section.
  • dribbbleLink Dribble Link for the footer section.
;[params]
logoMain = '/images/shared/main-logo.svg'
logoMainDark = '/images/shared/dark-logo.svg'
logoMainLight = '/images/shared/light-logo.svg'
logo = '/images/shared/logo.svg'
logoDark = '/images/shared/logo-dark.svg'
contactPage = '/contact-us'
footerDescription = 'Turpis tortor nunc sed amet et faucibus vitae morbi congue sed id mauris.'
copyright = 'Copyright ©NextSaaS – smart application for modern business'
contactMail = 'hello@nextsaas.com'
contactNumber = '+391 35 2568 4593'
contactAddress = '2464 Royal Ln. Mesa, New Jersey 45463'
facebookLink = 'https://www.facebook.com/'
instagramLink = 'https://www.instagram.com/'
linkedinLink = 'https://www.linkedin.com/'
youtubeLink = 'https://www.youtube.com/'
behanceLink = 'https://www.behance.net/'
dribbbleLink = 'https://dribbble.com/'
githubLink = 'https://github.com/'