X Tutup
Skip to content

Commit b797c9c

Browse files
In all the app templates, load and execute the Bootstrap JS code
1 parent 0167d5c commit b797c9c

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

templates/Angular2Spa/ClientApp/boot-client.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import 'angular2/bundles/angular2-polyfills.js';
2+
import 'bootstrap';
23
import './styles/site.css';
34

45
import { bootstrap } from 'angular2/platform/browser';

templates/ReactSpa/ClientApp/boot.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import 'bootstrap';
12
import 'bootstrap/dist/css/bootstrap.css';
23
import './css/site.css';
34

templates/WebApplicationBasic/ClientApp/App.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import 'bootstrap/dist/css/bootstrap.css';
1+
import 'bootstrap';
22
import './css/site.css';
33

44
// Replace with your TypeScript code

0 commit comments

Comments
 (0)
X Tutup