the next generation of rockfic.com
Go to file
2023-10-12 22:28:37 -04:00
.vscode chore(workspace): add conventional commit scope for server plugins 2023-10-10 22:33:48 -04:00
components style(components): fixup icon 2023-10-11 16:40:30 -04:00
composables fix(composables): remove jwt auth header from useApiFetch implementation 2023-10-10 22:22:45 -04:00
layouts refactor(components): cleanup 2023-10-11 15:14:52 -04:00
lib refactor: edit common function for database plugin and middleware 2023-10-11 16:51:03 -04:00
models fix(db/models): only register counter plugin if model doesn't already exist 2023-10-12 22:28:37 -04:00
pages feat(pages): add page for browsing a band's stories 2023-10-11 16:49:05 -04:00
plugins refactor: create plugin to track whether the page is fully loaded or not 2023-10-11 16:54:32 -04:00
public chore(workspace): add tinymce (with premium plugins) as a submodule under public/ 2023-10-10 21:52:28 -04:00
server feat(api): create endpoints to check if a given username/email already exists in the database 2023-10-11 17:00:18 -04:00
stores refactor(client-side): create pinia store for autosave information 2023-10-10 22:16:30 -04:00
stories chore: add .gitkeep files totmp/ and stories/ directories 2023-10-01 19:16:24 -04:00
tmp chore: add .gitkeep files totmp/ and stories/ directories 2023-10-01 19:16:24 -04:00
typings refactor(typing): extend nuxt-auth's sessionData type 2023-10-10 22:00:38 -04:00
.editorconfig chore(config): add editor and prettier config files 2023-09-26 23:55:16 -04:00
.gitignore chore(workspace): remove pnpm lockfile from git 2023-10-11 16:56:58 -04:00
.gitmodules chore(workspace): add tinymce (with premium plugins) as a submodule under public/ 2023-10-10 21:52:28 -04:00
.npmrc initialize with nuxt 2023-09-23 15:58:51 -04:00
.prettierignore chore(config): add editor and prettier config files 2023-09-26 23:55:16 -04:00
.prettierrc.json chore(config): add editor and prettier config files 2023-09-26 23:55:16 -04:00
app.vue refactor(pages): add custom "empty" template 2023-10-11 14:21:57 -04:00
nuxt.config.ts refactor(nuxt): add cache, treeshaking and sourcemap capabilities to nuxt config 2023-10-11 16:53:33 -04:00
package.json chore(deps): add axios and nuxt-speedkit deps 2023-10-10 22:30:38 -04:00
README.md initialize with nuxt 2023-09-23 15:58:51 -04:00
tsconfig.json chore(workspace): allow implicit this in tsconfig 2023-10-03 01:20:29 -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.