когда я попытайтесь выполнить сборку на моем рабочем сервере: Ubuntu 22.04.3 LTS с помощью npm run build. Я получаю следующую ошибку:
Код: Выделить всё
./src/pages/about.tsx:7:20
Type error: Cannot find module '@/components/Layout' or its corresponding type declarations.
Код: Выделить всё
import TestimonialPage from "@/components/about/TestimonialPage"
import Layout from "@/components/Layout"
import BaseButton from "@/components/base/BaseButton"
Я попытался изменить в своем tsconfig.json строку с «moduleResolution»: "bundler" с "moduleResolution": "node", но без какого-либо эффекта.
Также пробовал изменить "пути":
Код: Выделить всё
"paths": {
"@/*": ["./src/*"]
}
Код: Выделить всё
"paths": {
"@/*": ["src/*"]
}
Что еще я могу сделать?
Подробнее здесь: https://stackoverflow.com/questions/786 ... -run-build