File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -184,7 +184,7 @@ Here we have the *usual suspects* found at the root level.
184184With Angular Universal , we need to split our applicatoin logic ** per platform ** so [if we look inside this folder ](./ ClientApp ),
185185you ' 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 ) -
188188This file starts up the entire Angular application for the Client / browser platform .
189189
190190Here 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
391391Yes , of course but there are a few things you need to setup before doing this . First , make sure jQuery
392392is 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'; ` )
395395In a Component you want to use jQuery, make sure to import it near the top like so:
396396
397397```typescript
You can’t perform that action at this time.
0 commit comments