A lightweight Nuxt template to write a Markdown driven website, based on Nuxt Content, TailwindCSS and Iconify.
content/
directory<Icon>
componentTake a look at content-wind.nuxt.dev for the complete documentation.
Make sure to install the dependencies:
# yarn
yarn install
# npm
npm install
Start the development server on http://localhost:3000
npm run dev
Pre-render the website to be deployed on any static hosting:
npm run generate
The dist/
directory is ready to be deployed (symlink to .output/public
), learn more on Nuxt docs.
Build the application for production:
npm run build
Start the server in production:
node .output/server/index.mjs
Learn more on Nuxt docs for more information.