### Install Dependencies (pnpm/npm) Source: https://github.com/who-jonson/sakai-nuxt/blob/main/README.md Installs project dependencies using pnpm or npm. This is a prerequisite for running the application. ```bash pnpm install # npm install ``` -------------------------------- ### Run Development Server (pnpm/npm) Source: https://github.com/who-jonson/sakai-nuxt/blob/main/README.md Starts the development server for the Nuxt 3 application. Allows for live preview and development. ```bash pnpm dev # npm run dev ``` -------------------------------- ### Install Dependencies (yarn) Source: https://github.com/who-jonson/sakai-nuxt/blob/main/README.md Installs project dependencies using yarn. This is an alternative to using pnpm or npm. ```bash yarn install ``` -------------------------------- ### Run Development Server (yarn) Source: https://github.com/who-jonson/sakai-nuxt/blob/main/README.md Starts the development server for the Nuxt 3 application using yarn. This is an alternative to using pnpm or npm. ```bash yarn dev ``` -------------------------------- ### Nuxi CLI Scripts Source: https://github.com/who-jonson/sakai-nuxt/blob/main/README.md Common Nuxi CLI commands for building, generating, and running the Nuxt 3 application. These commands are derived from create-nuxt-app. ```bash "pnpm run dev": Starts the development server "pnpm run build": Builds the application for deployment. "pnpm run generate": Builds the application for static deployment. "pnpm run start": Runs the production server. ``` -------------------------------- ### Project Dependencies Source: https://github.com/who-jonson/sakai-nuxt/blob/main/README.md Essential dependencies required for the Sakai Nuxt Admin Template, including Primeflex, Primeicons, and Primevue. ```json { "primeflex": "3.2.1", "primeicons": "6.0.1", "primevue": "3.17.0" } ``` -------------------------------- ### SASS Variables for Customization Source: https://github.com/who-jonson/sakai-nuxt/blob/main/README.md Customizable SASS variables for the Sakai Admin Template layout. These variables control aspects like font size, border radius, and transition duration. ```css $fontSize: 1rem; $borderRadius: 12px; $transitionDuration: .2s; $maskBg: rgba(0, 0, 0, 0.4); ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.