목록Vue (77)
진스
카카오맵, 파이어베이스,scss 사용// https://nuxt.com/docs/api/configuration/nuxt-configexport default defineNuxtConfig({ compatibilityDate: '2024-04-03', devtools: { enabled: true }, ssr: true, // SSR 비활성화 nitro: { preset: 'static' // 정적 사이트 빌드 ssr로할때는 사실 불필요한듯 }, plugins: [ '~/plugins/firebase.js' // Firebase 초기화 플러그인 추가 ], runtimeConfig: { public: { KAKAO_API_KEY: process.env.KAKAO_AP..
npm i pinia로 설치후에 main.js에서 import { createPinia } from "pinia"; app.use(createPinia()); 이렇게 설치 작성후에 실행하니 X [ERROR] No matching export in "node_modules/vue-demi/lib/index.mjs" for import "hasInjectionContext" node_modules/pinia/dist/pinia.mjs:6:9: 6 │ import { hasInjectionContext, inject, toRaw, watch, unref, ... ╵ ~~~~~~~~~~~~~~~~~~~ 14:50:46 [vite] error while updating dependencies: Error: Bui..
보호되어 있는 글입니다.
.eslintrc.js 의 파일내에 "node":true 추가로 오류 해결
보호되어 있는 글입니다.
보호되어 있는 글입니다.
watch: { $route(to, from) { if (to.path !== from.path) { .. } }, }, watch:{ $route(){ const width = window.innerWidth if (width
보호되어 있는 글입니다.