This commit is contained in:
Mor Shemesh 2017-05-17 16:44:12 +03:00
Родитель 99a9d6f36a
Коммит 1f213a4213
3 изменённых файлов: 3 добавлений и 2 удалений

2
.gitignore поставляемый
Просмотреть файл

@ -14,7 +14,7 @@ yarn-debug.log*
yarn-error.log*
# generated files
*.css
src/**/*.css
# generated merge temp files
*.orig

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Просмотреть файл

@ -22,7 +22,6 @@ app.use(authRouter.authenticationMiddleware('/auth', '/api/setup'));
app.use('/auth', authRouter.router);
app.use('/api', apiRouter.router);
app.use('/static', express.static(path.resolve(__dirname, '..', 'build', 'static')));
app.use(express.static(path.resolve(__dirname, '..', 'build')));
// Always return the main index.html, so react-router render the route in the client