Go to file Use this template
Flycro e530f23103 chore: Update Dependencies 2024-03-10 15:12:34 +01:00
components feat(User): Add Logout 2023-11-10 15:51:47 +01:00
composables feat(Roles): Added Role Functionality 2023-11-11 16:32:21 +01:00
layouts chore(Layout): Refactored default Layout 2023-11-11 16:33:30 +01:00
middleware fix: Typo from Testing 2023-11-11 16:32:41 +01:00
pages fix: missing template 2024-02-17 15:36:37 +01:00
plugins fix: Lint Errors 2023-11-11 16:31:29 +01:00
public Init 2023-11-07 19:02:50 +01:00
server Init 2023-11-07 19:02:50 +01:00
utils feat(CSRF): Refresh Token on CSRF Error 2023-11-10 14:00:43 +01:00
.env.example feat(LaravelEcho): Add support for Laravel Echo 2023-11-09 23:49:30 +01:00
.gitignore Init 2023-11-07 19:02:50 +01:00
.npmrc chore: Update Dependencies 2024-03-10 15:12:34 +01:00
.nuxtignore feat(LaravelEcho): Add support for Laravel Echo 2023-11-09 23:49:30 +01:00
README.md Init 2023-11-07 19:02:50 +01:00
app.config.ts chore(Nav): Remove unused Elements + Header Full Size 2023-11-10 11:18:21 +01:00
app.vue Init 2023-11-07 19:02:50 +01:00
error.vue fix: Set Auth Layout to not leak App 2023-11-11 16:42:29 +01:00
eslint.config.js Init 2023-11-07 19:02:50 +01:00
nuxt.config.ts chore(deps): Update dependencies & switched to pnpm 2024-02-17 15:36:22 +01:00
package.json chore: Update Dependencies 2024-03-10 15:12:34 +01:00
pnpm-lock.yaml chore: Update Dependencies 2024-03-10 15:12:34 +01:00
tsconfig.json Init 2023-11-07 19:02:50 +01: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.