| 123456789101112131415161718192021222324252627282930313233343536373839 |
- // https://nuxt.com/docs/api/configuration/nuxt-config
- export default defineNuxtConfig({
- app: {
- head: {
- titleTemplate: '',
- title: '그린웨일글로벌',
- htmlAttrs: {
- lang: 'ko'
- },
- link: [
- //{ rel: 'icon', type: 'image/x-icon', href: '/favicon.ico' },
- ],
- script: [
- {
- src: 'https://openapi.map.naver.com/openapi/v3/maps.js?ncpClientId=5qsxjdotgi',
- defer: true
- }
- ]
- },
- },
- modules: ['@nuxt/ui'],
- ui: {
- colorMode: false
- },
- css: [
- '~/assets/styles/style.css',
- '~/assets/styles/sub.css'
- ],
- compatibilityDate: '2025-07-15',
- devtools: { enabled: false },
- devServer: {
- host: "0.0.0.0"
- },
- runtimeConfig: {
- public: {
- apiBase: process.env.NUXT_PUBLIC_API_BASE || 'http://localhost'
- }
- }
- })
|