How to Build a blog using Strapi, Nuxt (Vue) and Apollo

hi mehdi, frontend in this tut is vue(nuxt by the way),you can add it in your nuxt.config.js like this

export default {
css: [
    '@/assets/main.css',
  ],
}

or if if you want to use in one page head you can add it to layout or in head of your page.vue like this

head() {
    return {
      link: [
        {
          rel: "stylesheet",
          href:
            "/asset/css/main.css"
        },
      ],
}
}

and if its not for whole project you can do it at the end of your component too

<style scope>
some property: some value
/* you can remove scope */
</style>