Supersaas templates are a collection of ready-to-use templates for Nuxt 3 that help you build your SaaS project in minutes. They are designed to help you get started quickly and efficiently, and to provide you with a solid foundation for your project.
@nuxt/ui
and @nuxt/ui-pro
@nuxt/image
@nuxt/content
@nuxt/ui
and @nuxt/ui-pro
astro
git clone https://github.com/<REPOSITORY>
Make sure to install the dependencies (PNPM Recommended):
# pnpm
pnpm install
# npm
npm install
# yarn
yarn install
# bun
bun install
Start the development server on http://localhost:3000
:
# pnpm
pnpm dev
# npm
npm run dev
# yarn
yarn dev
# bun
bun run dev
Open the project in your browser at http://localhost:3000
.
Build the application to generate code for production:
# pnpm
pnpm build
# npm
npm run build
# yarn
yarn build
# bun
bun run build