the next generation of rockfic.com
Go to file
☙◦ The Tablet ❀ GamerGirlandCo ◦❧ 3640c0db11
feat(composables): add fetch helper function
extend useFetch with a helper that prepends `/api` to the url, as well as makes the default http method "GET"
2023-09-25 19:23:37 -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/stories refactor(db/models): add new story models 2023-09-25 19:19:32 -04:00
public add/copy over various assets 2023-09-25 19:14:28 -04:00
server begin api 2023-09-23 16:40:24 -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.