Skip to content

Commit 76108b6

Browse files
committed
docs(readme): naming fix
1 parent 8c73209 commit 76108b6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ Here we have the *usual suspects* found at the root level.
184184
With Angular Universal, we need to split our applicatoin logic **per platform** so [if we look inside this folder](./ClientApp),
185185
you'll see the 2 root files, that branch the entire logic for browser & server respectively.
186186

187-
- [**Boot.Browser.ts**](./ClientApp/main.browser.ts) -
187+
- [**Boot.Browser.ts**](./ClientApp/boot.browser.ts) -
188188
This file starts up the entire Angular application for the Client/browser platform.
189189

190190
Here we setup a few things, client Angular bootstrapping.
@@ -391,7 +391,7 @@ better, more abstract ways of dealing with the DOM in Angular (4+) such as using
391391
Yes, of course but there are a few things you need to setup before doing this. First, make sure jQuery
392392
is included in webpack vendor file, and that you have a webpack Plugin setup for it. `new webpack.ProvidePlugin({ $: 'jquery', jQuery: 'jquery' })`
393393

394-
Now, make sure any "plugins" etc that you have, are only included in your `main.browser.ts` file. (ie: `import 'slick-carousel';`)
394+
Now, make sure any "plugins" etc that you have, are only included in your `boot.browser.ts` file. (ie: `import 'slick-carousel';`)
395395
In a Component you want to use jQuery, make sure to import it near the top like so:
396396

397397
```typescript

0 commit comments

Comments
 (0)