Go to file
AaronHux 7a6a85734f
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 3m50s Details
修改构建方式
2024-05-25 23:12:37 +08:00
.gitea/workflows 修改CI 2024-05-25 22:51:04 +08:00
components init 2024-05-25 15:20:10 +08:00
content init 2024-05-25 15:20:10 +08:00
layouts init 2024-05-25 15:20:10 +08:00
pages init 2024-05-25 15:20:10 +08:00
public init 2024-05-25 15:20:10 +08:00
server init 2024-05-25 15:20:10 +08:00
types init 2024-05-25 15:20:10 +08:00
.dockerignore init 2024-05-25 15:21:34 +08:00
.editorconfig init 2024-05-25 15:20:10 +08:00
.env.example init 2024-05-25 15:20:10 +08:00
.eslintignore init 2024-05-25 15:20:10 +08:00
.eslintrc.cjs init 2024-05-25 15:20:10 +08:00
.gitignore init 2024-05-25 15:20:10 +08:00
.npmrc init 2024-05-25 15:20:10 +08:00
Dockerfile 修改构建方式 2024-05-25 23:12:37 +08:00
README.md first commit 2024-05-25 15:19:49 +08:00
app.config.ts init 2024-05-25 15:20:10 +08:00
app.vue init 2024-05-25 15:20:10 +08:00
deploy.sh 修改构建方式 2024-05-25 23:12:37 +08:00
error.vue init 2024-05-25 15:20:10 +08:00
install.sh init 2024-05-25 15:20:10 +08:00
nginx.conf init 2024-05-25 15:21:34 +08:00
nuxt.config.ts 修改构建方式 2024-05-25 23:12:37 +08:00
nuxt.schema.ts init 2024-05-25 15:20:10 +08:00
package.json init 2024-05-25 15:47:35 +08:00
pnpm-lock.yaml init 2024-05-25 15:20:10 +08:00
renovate.json init 2024-05-25 15:20:10 +08:00
tailwind.config.ts init 2024-05-25 15:20:10 +08:00
tsconfig.json init 2024-05-25 15:20:10 +08:00

README.md

nuxt-ui-saas-social-card

Nuxt UI Pro - SaaS template

Nuxt UI Pro

Quick Start

npx nuxi init -t github:nuxt-ui-pro/saas

Setup

Make sure to install the dependencies:

# npm
npm install

# pnpm
pnpm install

# yarn
yarn install

# bun
bun install

Development Server

Start the development server on http://localhost:3000:

# npm
npm run dev

# pnpm
pnpm run dev

# yarn
yarn dev

# bun
bun run dev

Production

Build the application for production:

# npm
npm run build

# pnpm
pnpm run build

# yarn
yarn build

# bun
bun run build

Locally preview production build:

# npm
npm run preview

# pnpm
pnpm run preview

# yarn
yarn preview

# bun
bun run preview

Check out the deployment documentation for more information.

Nuxt Studio integration

Add @nuxthq/studio dependency to your package.json:

# npm
npm install --save-dev @nuxthq/studio

# pnpm
pnpm add -D @nuxthq/studio

# yarn
yarn add -D @nuxthq/studio

# bun
bun add -d @nuxthq/studio

Add this module to your nuxt.config.ts:

export default defineNuxtConfig({
  ...
  modules: [
    ...
    '@nuxthq/studio'
  ]
})

Read more on Nuxt Studio docs.

Renovate integration

Install Renovate GitHub app on your repository and you are good to go.