Developments/Nuxt3
[Nuxt3] Cannot find module '??.json' or its corresponding type declarations.ts-plugin(2307) ํด๊ฒฐํ๊ธฐ
ํธ๋ฅธ๊น๋ฐ๐ณ๏ธ
2025. 5. 4. 13:25
์ํฉ: ์๋์ ๊ฐ์ด ์ง์ jsonํ์ผ์ ๊ฐ์ ธ์ฌ๋ ๊ฒฝ๊ณ ๊ฐ ๋ฌ๋ค. ํ์ง๋ง ๋ฐ์ดํฐ๋ ์ ์์ ์ผ๋ก ๊ฐ์ ธ์ค๊ณ ์๋ค.
import faqCategoryList from './public/data/faq_category.json';
์ฆ์: Cannot find module '??.json' or its corresponding type declarations.ts-plugin(2307)
ํด๊ฒฐ: ๋ฃจํธํด๋์ types.d.tsํ์ผ์ ์์ฑํํ ์๋์ฒ๋ผ json๋ชจ๋์ ๋ช ์์ ์ผ๋ก ์ ์ธํด์ค๋ค
declare module "*.json" {
const value: any;
export default value;
}