Skip to content

Commit d8076da

Browse files
authored
updates (#48)
* exclude node_modules folder on script imports * fix db name in setup.md
1 parent 9ba9768 commit d8076da

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

client/config/webpack.config.common.js

+1
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ const common = {
3939
{
4040
test: /\.jsx?$/,
4141
use: ['babel-loader?cacheDirectory'],
42+
exclude: /node_modules/,
4243
include: PATHS.app
4344
},
4445
{

docs/setup.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ yarn # root folder
1212
## Database
1313

1414
* Install [postgres](https://www.postgresql.org/) and [pgAdmin](https://www.pgadmin.org/)
15-
* Create new database called *ReactSeedDB*. Use following credentials:
15+
* Create new database called *reactseeddb*. Use following credentials:
1616
* user: `postgres`
1717
* password: `Password.01`
1818
* For more information about setting up the server see [official docs](https://wiki.postgresql.org/wiki/First_steps)

0 commit comments

Comments
 (0)