nuxt.config.ts 623 B

12345678910111213141516171819202122232425262728
  1. /*
  2. * @Author: NMTuan
  3. * @Email: NMTuan@qq.com
  4. * @Date: 2024-02-18 11:35:10
  5. * @LastEditTime: 2024-02-22 12:17:25
  6. * @LastEditors: NMTuan
  7. * @Description:
  8. * @FilePath: \timeNow\nuxt.config.ts
  9. */
  10. // https://nuxt.com/docs/api/configuration/nuxt-config
  11. export default defineNuxtConfig({
  12. devtools: { enabled: false },
  13. modules: ['@nuxt/ui', '@pinia/nuxt'],
  14. colorMode: {
  15. preference: 'dark'
  16. },
  17. app: {
  18. head: {
  19. link: [{ rel: 'icon', type: 'image/png', href: '/favicon.png' }]
  20. }
  21. },
  22. ui: {
  23. icons: ['ri']
  24. },
  25. imports: {
  26. dirs: ['stores']
  27. }
  28. })