Как я могу разработать мультиязычное приложение ReactJS - PullRequest
2 голосов
/ 03 июня 2019

Я пытаюсь создать веб-сайт, используяactJS и безголовый 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 запускать сборку производственной версии неработает, я использую реагирующую привязку для генерации статических страниц, и она не работает. Я получаю ошибки:

console.log at /: Не удалось загрузить ресурс: net :: ERR_FAILED

Я новичок, чтобы отреагироватьJS, пожалуйста, любой может помочь.

Спасибо, B

...