Build tools

Learn how to use NextJS Material Kit to build your website, change brand-colors and more.

Change brand colors

  • You will find all the branding colors inside assets/scss/core/variables/_colors.scss and inside assets/jss/nextjs-material-kit.js.

Available commands

#NameUsageDescriptionRead more
1installnpm installThis command installs a package, and any packages that it depends on.Read more
2testnpm run testRuns the test watcher in an interactive mode. (Note that we have not implemented any tests - this command is by default from the initialization of package.json)Read more
3devnpm run devThis will determinate the start of your development server.Read more
4buildnpm run buildThis will create a build directory with a production build of your app.Read more
5startnpm startThis will determinate the start of your production server.Read more
6install:cleannpm run install:cleanThis command will remove the node_modules folder and package_lock.json file, will install a fresh copy of them and will determinate the start of your development server.