https://github.com/razorcx-courses/nuxt3-bulma-starter
Nuxt 3 - Bulma CSS/SCSS Starter
https://github.com/razorcx-courses/nuxt3-bulma-starter
bulma bulma-css bulma-scss nuxt nuxt3 nuxtjs
Last synced: 25 days ago
JSON representation
Nuxt 3 - Bulma CSS/SCSS Starter
- Host: GitHub
- URL: https://github.com/razorcx-courses/nuxt3-bulma-starter
- Owner: razorcx-courses
- Created: 2022-04-28T16:08:31.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2022-04-28T16:10:45.000Z (about 3 years ago)
- Last Synced: 2025-03-22T14:22:22.471Z (about 1 month ago)
- Topics: bulma, bulma-css, bulma-scss, nuxt, nuxt3, nuxtjs
- Language: SCSS
- Homepage:
- Size: 140 KB
- Stars: 4
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Nuxt 3 - Bulma CSS/SCSS Starter
Look at the [nuxt 3 documentation](https://v3.nuxtjs.org) 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.