A Nuxt theme for websites of Le Classement des Associations.
Make sure to install the dependencies:
pnpm installThis theme is at the root of this repository, it is exactly like a regular Nuxt project.
The .playground directory should help you on trying theme during development.
Running pnpm dev will prepare and boot .playground directory, which imports your theme itself.
This project is a Nuxt layer which is shaped exactly the same as any other Nuxt project, except it is published on NPM.
To install this theme, you can use npm, yarn or pnpm:
npm install --save @classement-des-associations/website-themeThen add the dependency to their extends in nuxt.config:
defineNuxtConfig({
extends: '@classement-des-associations/website-theme'
})Start the development server on http://localhost:3000
pnpm devCurrently, this theme using these runtime config:
newsletterSubscriptionLink- The link to the newsletter subscription formlinkedinGroupLink- The link to the LinkedIn group
Read more about Runtime Config.
Build the application for production:
pnpm buildOr statically generate it with:
pnpm generateLocally preview production build:
pnpm previewCheckout the deployment documentation for more information.