https://github.com/razorcx-courses/nuxt3-gridjs-public
Nuxt 3 / Grid.js Tutorial
https://github.com/razorcx-courses/nuxt3-gridjs-public
grid-js nuxt nuxt-api nuxt-components nuxt-composables nuxt-module nuxt-modules nuxt-pages nuxt-plugins nuxt-server nuxt3
Last synced: about 1 month ago
JSON representation
Nuxt 3 / Grid.js Tutorial
- Host: GitHub
- URL: https://github.com/razorcx-courses/nuxt3-gridjs-public
- Owner: razorcx-courses
- Created: 2022-04-22T14:04:30.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2022-04-22T14:19:15.000Z (about 3 years ago)
- Last Synced: 2025-02-16T03:41:20.968Z (3 months ago)
- Topics: grid-js, nuxt, nuxt-api, nuxt-components, nuxt-composables, nuxt-module, nuxt-modules, nuxt-pages, nuxt-plugins, nuxt-server, nuxt3
- Language: TypeScript
- Homepage:
- Size: 144 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Nuxt 3 / Grid.js Starter
Live site at [nuxt3-gridjs](https://nuxt3-gridjs.netlify.app/).
Look at the Nuxt3 [nuxt 3 documentation](https://v3.nuxtjs.org) to learn more.
Look at the Grid.js [grid.js documentation](https://gridjs.io/docs/index) to learn more.
## Setup
Make sure to install the dependencies:
```bash
# yarn
yarn install# npm
npm install# pnpm
pnpm install --shamefully-hoist
```## Development Server
Start the development server on http://localhost:3000
```bash
npm run dev
```## Production
Build the application for production:
```bash
npm run build
```Locally preview production build:
```bash
npm run preview
```Checkout the [deployment documentation](https://v3.nuxtjs.org/docs/deployment) for more information.