Starter for a Nuxt Markdown Blog
Check it out here: https://starter-for-nuxt-markdown-blog.netlify.com/
# install dependencies
$ yarn install
# serve with hot reload at localhost:3000
$ yarn dev
# run via netlify CLI with functions
$ netlify dev
When running via `netflify dev` point your browser at localhost:8888 so the site and functions are hosted on the same port.
# build for production and launch server
$ yarn build
$ yarn start
# generate static project
$ yarn generate
$ netlify functions:invoke send-contact-email --no-identity --payload '{"contactEmail" : "jenna@example.com", "contactName" : "Jenna", "message" : "Hello world from a function!"}'