LoongPanel-Asp/web
niyyzf dfbc1cfdb0 init 2024-06-22 10:54:02 +08:00
..
assets init 2024-06-22 10:54:02 +08:00
components init 2024-06-22 10:54:02 +08:00
config init 2024-06-22 10:54:02 +08:00
layouts init 2024-06-22 10:54:02 +08:00
middleware init 2024-06-22 10:54:02 +08:00
pages init 2024-06-22 10:54:02 +08:00
patches init 2024-06-22 10:54:02 +08:00
plugins init 2024-06-22 10:54:02 +08:00
public init 2024-06-22 10:54:02 +08:00
server init 2024-06-22 10:54:02 +08:00
strores init 2024-06-22 10:54:02 +08:00
types init 2024-06-22 10:54:02 +08:00
.env init 2024-06-22 10:54:02 +08:00
.gitignore init 2024-06-22 10:54:02 +08:00
README.md init 2024-06-22 10:54:02 +08:00
app.vue init 2024-06-22 10:54:02 +08:00
base.scss init 2024-06-22 10:54:02 +08:00
nuxt.config.ts init 2024-06-22 10:54:02 +08:00
package.json init 2024-06-22 10:54:02 +08:00
tsconfig.json init 2024-06-22 10:54:02 +08:00
utils.ts init 2024-06-22 10:54:02 +08:00
yarn.lock init 2024-06-22 10:54:02 +08:00

README.md

Nuxt 3 Minimal Starter

Look at the Nuxt 3 documentation to learn more.

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.