This is the frontend of my website made in NuxtJS.
Made it with NuxtJS, Axios and Vuetify. You can of course use it as you want to make you own blog-styled website.
My API is published on my own VPS and is being accessed by Axios in the services/api/api.js
file. Requests are written here to be accessible from all over the application just by using Api.something()
call.
These are the very easy steps to follow if you want to use this front application:
- Clone the repo to you workspace
- Enter the project's directory and run
npm install
to get the dependencies - Run
npm run dev
to start the project locally. The prompt will show you the port the app has been published to. - Make sure to switch to you own backend API link in the
services/api/api.js
file.