0👍
you can do it yourself as follows:
- Install Loopback globaly
npm install -g loopback-cli
and run loopback creator in terminallb
- Go to project folder from creator and install nuxt
npm i -S nuxt
- create nuxt.config.js with set srcDir
- change loopback port in /server/config.json on 8080
- To run api with app toghether install concurrently devDependencie and edit package.json
"start": "concurrently \"nuxt\" \"node .\"",
Your nuxt app should be run on port 3000 and loopback on 8080.
- [Vuejs]-Using prerender-spa-plugin with Laravel Vue.js in the resources directory
- [Vuejs]-Vue-Router not loading component
Source:stackexchange.com