2

我正在尝试使用 reactJS 和无头 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 生产版本不起作用时,我正在使用 react-snap 生成静态页面,它也不起作用我收到错误:

console.log at /: 加载资源失败:net::ERR_FAILED

我是 reactJS 的新手,请任何人都可以提供帮助。

谢谢,乙

4

0 回答 0