the next generation of rockfic.com
Go to file
2023-12-28 19:58:29 -05:00
.run chore(workspace): create webstorm run configurations 2023-12-09 17:32:26 -05:00
.vscode chore(workspace): add recommended extensions for vscode 2023-12-09 17:44:16 -05:00
components revert(components): roll back i18n boilerplate 2023-12-28 19:58:25 -05:00
composables refactor(composables): make useApiFetch typing stronger(?) 2023-12-06 21:27:01 -05:00
layouts refactor(*): refactor tsconfig paths 2023-12-20 17:23:31 -05:00
lib refactor(*): use more sane path aliases 2023-12-28 19:58:26 -05:00
models refactor(db/models): rename generateToken method to generateJWT 2023-12-20 19:56:33 -05:00
pages refactor(*): refactor tsconfig paths 2023-12-20 17:23:31 -05:00
plugins refactor(*): refactor tsconfig paths 2023-12-20 17:23:31 -05:00
public chore(workspace): add tinymce (with premium plugins) as a submodule under public/ 2023-10-10 21:52:28 -04:00
server refactor(api): change jwt generation call to use new function name 2023-12-28 19:58:26 -05:00
stores refactor(client-side): add autosave store actions 2023-10-12 23:01:43 -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(*): refactor tsconfig paths 2023-12-20 17:23:31 -05: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
.gitlab-ci.yml refactor(ci): set bun env to production 2023-12-28 19:58:27 -05: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): move stuff to default layout 2023-12-09 17:02:56 -05:00
error.vue feat(nuxt): add formal error page 2023-12-09 17:03:36 -05:00
nuxt.config.ts revert(components): roll back i18n boilerplate 2023-12-28 19:58:25 -05:00
package.json chore(deps): update sharp 2023-12-28 19:58:29 -05:00
README.md initialize with nuxt 2023-09-23 15:58:51 -04:00
tsconfig.json refactor(workspace): remove tsconfig path aliases 2023-12-28 19:58:25 -05: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.