Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

clarifying and updating a few paths in code examples (#594) #659

Merged
merged 1 commit into from
Apr 9, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/backend.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ If you are building a purely-static app (one that is deployed separately from th
Let's take a look at the default `config/index.js`:

``` js
// config/index.js
var path = require('path')

module.exports = {
Expand Down
1 change: 1 addition & 0 deletions docs/linter.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ If you are not happy with the default linting rules, you have several options:
1. Overwrite individual rules in `.eslintrc.js`. For example, you can add the following rule to enforce semicolons instead of omitting them:

``` js
// .eslintrc.js
"semi": [2, "always"]
```

Expand Down
2 changes: 1 addition & 1 deletion docs/static.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ In comparison, files in `static/` are not processed by Webpack at all: they are
As an example, with the following default values:

``` js
// config.js
// config/index.js
module.exports = {
// ...
build: {
Expand Down