A free server provider‘s admin website including backend and frontend developt with nuxt3
Go to file
2024-07-06 18:31:26 +08:00
components feat(/api/user): Compete login-code and auth-middleware 2024-06-22 12:19:52 +08:00
composables feat(Auth): Compete auth-middleware 2024-07-06 18:31:26 +08:00
layouts feat(.): Achieve the basis layout and features 2024-06-10 00:04:06 +08:00
middleware feat(Auth): Compete auth-middleware 2024-07-06 18:31:26 +08:00
pages feat(Auth): Compete auth-middleware 2024-07-06 18:31:26 +08:00
prisma feat(Auth): Compete auth-middleware 2024-07-06 18:31:26 +08:00
public feat(.): Achieve the basis layout and features 2024-06-10 00:04:06 +08:00
server feat(Auth): Compete auth-middleware 2024-07-06 18:31:26 +08:00
types feat(Auth): Compete auth-middleware 2024-07-06 18:31:26 +08:00
.gitignore feat(.): Achieve the basis layout and features 2024-06-10 00:04:06 +08:00
app.vue feat(.): Achieve the basis layout and features 2024-06-10 00:04:06 +08:00
LICENSE Initial commit 2024-06-09 23:58:48 +08:00
nuxt.config.ts feat(.): Achieve the sms code send 2024-06-10 23:57:29 +08:00
package.json feat(.): Achieve the sms code send 2024-06-10 23:57:29 +08:00
README.md feat(.): Achieve the basis layout and features 2024-06-10 00:04:06 +08:00
tsconfig.json feat(.): Achieve the basis layout and features 2024-06-10 00:04:06 +08:00
vueform.config.ts fix(register.vue): Make the register page 2024-06-10 02:35:22 +08:00
yarn.lock feat(.): Achieve the sms code send 2024-06-10 23:57:29 +08:00

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.