aboutsummaryrefslogtreecommitdiffstats
path: root/nuxt.config.ts
blob: b208d99f63b5f20349f3a35f2234fce847246e00 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
  components: [
    { path: '~/components', pathPrefix: true },
    { path: '~/components/base', pathPrefix: false },
    { path: '~/components/header', pathPrefix: false },
  ],
  devtools: { enabled: true },
  modules: [
    // ...
    '@pinia/nuxt',
  ],
  css: [
    '@fortawesome/fontawesome-svg-core/styles.css'
  ]
})