Skip to content

Commit 97fa63d

Browse files
committed
update README
1 parent 23fc0a9 commit 97fa63d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -69,13 +69,13 @@ Your built files are in the /dist folder.
6969

7070
## Use NodeJS Native libraries
7171

72-
Actually Angular-Cli doesn't seem to be able to import nodeJS native libs or electron libs at compilation time (Webpack error).
73-
If you need to use NodeJS some native libraries like 'fs' or 'os', you **MUST** add it manually in the file `webpack.config.js` in root folder :
72+
Actually Angular-Cli doesn't seem to be able to import nodeJS native libs or electron libs at compile time (Webpack error).
73+
If you need to use NodeJS native libraries like 'fs' or 'os', you **MUST** add it manually in the file `webpack.config.js` in root folder :
7474

7575
```javascript
7676
"externals": {
7777
"child_process": 'require(\'child_process\')',
7878
"electron": 'require(\'electron\')',
7979
"fs": 'require(\'fs\')'
8080
},
81-
```
81+
```

0 commit comments

Comments
 (0)