Как я могу разработать мультиязычное приложение ReactJS
Я пытаюсь создать сайт, используя ReactionJS и безголовый CMS Wordpress.
Вот мой код App.js:
<Switch>
<Route exact path="/:lng" component={Home} />
<Route path="/:lng/About" component={About} />
<Route path="/:lng/Projects" component={AllProjects} />
<Route path="/:lng/Services" component={Services} />
<Route path="/:lng/Project/:slug" component={Project} />
<Route
path="/:lng/service/:slug"
component={ServiceConstructionDetails}
/>
<Route path="/:lng/contactus" component={Contactus} />
<Route path="/:lng/careers" component={Careers} />
<Route path="/:lng/media" component={Media} />
<Route path="/:lng/floor-plans/:slug" component={FloorPlans} />
<Route path="/:lng/album/:slug" component={InnerMedia} />
</Switch>
При запуске npm run build рабочая версия не работает, я использую реагирующую привязку для генерации статических страниц, также она не работает. Я получаю ошибки:
console.log at /: Не удалось загрузить ресурс: net::ERR_FAILED
Я новичок, чтобы среагировать JS, пожалуйста, любой может помочь.
Спасибо б