nuxt.config.ts 843 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. // https://nuxt.com/docs/api/configuration/nuxt-config
  2. export default defineNuxtConfig({
  3. app: {
  4. head: {
  5. titleTemplate: '',
  6. title: '그린웨일글로벌',
  7. htmlAttrs: {
  8. lang: 'ko'
  9. },
  10. link: [
  11. //{ rel: 'icon', type: 'image/x-icon', href: '/favicon.ico' },
  12. ],
  13. script: [
  14. {
  15. src: 'https://openapi.map.naver.com/openapi/v3/maps.js?ncpClientId=5qsxjdotgi',
  16. defer: true
  17. }
  18. ]
  19. },
  20. },
  21. modules: ['@nuxt/ui'],
  22. ui: {
  23. colorMode: false
  24. },
  25. css: [
  26. '~/assets/styles/style.css',
  27. '~/assets/styles/sub.css'
  28. ],
  29. compatibilityDate: '2025-07-15',
  30. devtools: { enabled: false },
  31. devServer: {
  32. host: "0.0.0.0"
  33. },
  34. runtimeConfig: {
  35. public: {
  36. apiBase: process.env.NUXT_PUBLIC_API_BASE || 'http://localhost'
  37. }
  38. }
  39. })