the next generation of rockfic.com
Go to file
2023-09-25 19:26:13 -04:00
_migrate add migration scripts 2023-09-25 19:15:58 -04:00
composables feat(composables): add fetch helper function 2023-09-25 19:23:37 -04:00
models feat(db/models): add new challenge models 2023-09-25 19:26:13 -04:00
pages feat(pages): add login page 2023-09-25 19:25:15 -04:00
public add/copy over various assets 2023-09-25 19:14:28 -04:00
server refactor(api): rename genre endpoint 2023-09-25 19:24:23 -04:00
.gitignore initialize with nuxt 2023-09-23 15:58:51 -04:00
.npmrc initialize with nuxt 2023-09-23 15:58:51 -04:00
app.vue initialize with nuxt 2023-09-23 15:58:51 -04:00
nuxt.config.ts initialize with nuxt 2023-09-23 15:58:51 -04:00
package.json initialize with nuxt 2023-09-23 15:58:51 -04:00
pnpm-lock.yaml initialize with nuxt 2023-09-23 15:58:51 -04:00
README.md initialize with nuxt 2023-09-23 15:58:51 -04:00
tsconfig.json initialize with nuxt 2023-09-23 15:58:51 -04: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.