feathers-pinia-nuxt3

Stars
14
Committers
2

Nuxt 3 App with Feathers-Pinia

Look at the nuxt 3 documentation to learn more.

In order to use this repo, you need a working FeathersJS server. You can find one at the feathers-pinia-api repo.

Configuration

Getting Started

  1. Make sure you have NodeJS and npm installed.

  2. Install feathers-pinia-api

  3. Install your dependencies

    cd path/to/feathers-pinia-nuxt3
    npm install
    

    If you get a 404 'feathers-pinia-api-0.0.0.tgz' is not in this registry error, run npm run bundle:client in your feathers-pinia-api install and make sure it's running when you do this install.

    If you get a integrity checksum failed error, try deleting your package-lock.json file.

  4. Run the app

    npm run dev
    
  5. Visit the web site

    http://localhost:3000
    
    

Production

Build the application for production:

npm run build

Locally preview production build:

npm run preview

Checkout the deployment documentation for more information.