Skip to content
This repository was archived by the owner on Apr 8, 2020. It is now read-only.

Commit 5dc4761

Browse files
Reference bootstrap JS in KnockoutSpa/ReactSpa/VueSpa. Fixes #846
1 parent 5cb1846 commit 5dc4761

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

templates/KnockoutSpa/ClientApp/boot.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import './css/site.css';
2+
import 'bootstrap';
23
import * as ko from 'knockout';
34
import './webpack-component-loader';
45
import AppRootComponent from './components/app-root/app-root';

templates/ReactSpa/ClientApp/boot.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import './css/site.css';
2-
2+
import 'bootstrap';
33
import * as React from 'react';
44
import * as ReactDOM from 'react-dom';
55
import { browserHistory, Router } from 'react-router';

templates/VueSpa/ClientApp/boot.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import 'bootstrap';
12
import Vue from 'vue';
23
import VueRouter from 'vue-router';
34
Vue.use(VueRouter);

0 commit comments

Comments
 (0)