### Run Next.js Development Server Source: https://github.com/themeselection/flyonui-nextjs-integration/blob/main/README.md This snippet provides various commands to start the Next.js development server using different package managers like npm, yarn, pnpm, or bun. Running these commands will make the application accessible locally for development and testing purposes. ```bash npm run dev # or npm start if you want to test build # or yarn dev # or pnpm dev # or bun dev ``` -------------------------------- ### Build Next.js Application for Production Source: https://github.com/themeselection/flyonui-nextjs-integration/blob/main/README.md This command initiates the production build process for a Next.js application. It generates optimized client and server modules and performs a TypeScript type check on the source code, preparing the application for deployment. ```shell npm run build ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.