Reactjs получить как Google Blank - PullRequest
       7

Reactjs получить как Google Blank

0 голосов
/ 31 декабря 2018

На самом деле, я не знаю, почему мой сайт пустой в Google Fetch Render.Я использую реагирующий маршрутизатор 4 и Webpack 4 для создания файла.

Вот мой веб-пакет:

  mode:'production', //production //development
  entry: "./src/app.js",     
  output: {
    path: path.resolve(__dirname, 'public'),
    filename: 'bundle.js'
  },
  devServer: {
    publicPath: "/",
    contentBase: "./public",
    hot: true
  },

А вот и мой файл приложения:

import 'babel-polyfill';
import React, { Component } from 'react';
import ReactDOM from 'react-dom';
import { Link } from 'react-router';
import {
    BrowserRouter as Router,
    Route,
    Switch,
    withRouter
} from 'react-router-dom';
import Detail from '../components/Detail';
import Blog from '../components/Blog';
import Popular from '../components/Popular';
import Categories from '../components/Categories';
import Feature from '../components/feature';
import Header from '../components/Header';
import Category from '../components/Category';
import Page from '../components/Page';
import Search from '../components/Search';
import Register from '../components/Register';
import { browserHistory } from 'react-router';
import $ from 'jquery';

//Redux
import { Provider } from 'react-redux'; 
import store from './store'; 

Кто-нибудь может сказать мне, что я делаю неправильно?

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...