Ryan Florence преди 9 години
родител
ревизия
7810c00331
променени са 4 файла, в които са добавени 6 реда и са изтрити 6 реда
  1. 2 2
      index.html
  2. 2 2
      index.js
  3. 1 1
      package.json
  4. 1 1
      webpack.config.js

+ 2 - 2
index.html

@@ -2,7 +2,7 @@
 <html>
 <meta charset=utf-8/>
 <title>My First React Router App</title>
-<link rel=stylesheet href=index.css>
+<link rel=stylesheet href=/index.css>
 <div id=app></div>
-<script src="bundle.js"></script>
+<script src="/bundle.js"></script>
 

+ 2 - 2
index.js

@@ -1,6 +1,6 @@
 import React from 'react'
 import { render } from 'react-dom'
-import { Router, Route, hashHistory, IndexRoute } from 'react-router'
+import { Router, Route, browserHistory, IndexRoute } from 'react-router'
 import App from './modules/App'
 import About from './modules/About'
 import Repos from './modules/Repos'
@@ -8,7 +8,7 @@ import Repo from './modules/Repo'
 import Home from './modules/Home'
 
 render((
-  <Router history={hashHistory}>
+  <Router history={browserHistory}>
     <Route path="/" component={App}>
       <IndexRoute component={Home}/>
       <Route path="/repos" component={Repos}>

+ 1 - 1
package.json

@@ -4,7 +4,7 @@
   "description": "",
   "main": "index.js",
   "scripts": {
-    "start": "webpack-dev-server --inline --content-base ."
+    "start": "webpack-dev-server --inline --content-base . --history-api-fallback"
   },
   "author": "",
   "license": "ISC",

+ 1 - 1
webpack.config.js

@@ -3,7 +3,7 @@ module.exports = {
 
   output: {
     filename: 'bundle.js',
-    publicPath: ''
+    publicPath: '/'
   },
 
   module: {