This project is an example of how Nuxt 3 can be used for presenting academic work, in this example a master thesis.
Modules used are:
- content - reads the
content/directory in the project, and creates a powerful data layer for your application - ui - fully styled and customizable components for Nuxt
- google-fonts - module to help set up Google Fonts in Nuxt application
Initialise new project
# npx
npx nuxi@latest init <project-name >Make sure to install the dependencies:
# npm
npm install- Content Module
# npm
npm install @nuxt/content- UI Module
# npm
npm install @nuxt/ui- Google-Fonts Module
# npm
npm i -D @nuxtjs/google-fontsStart the development server on http://localhost:3000:
# npm
npm run devBuild the application for production:
# npm
npm run buildLocally preview production build:
# npm
npm run previewCheck out the deployment documentation for more information.