Skip to content

Commit 5180fe1

Browse files
Merge pull request aurelia#587 from AshleyGrant/loadbootstrap
fix(main): load bootstrap's javascript code
2 parents 6354efd + df557fa commit 5180fe1

File tree

2 files changed

+2
-0
lines changed
  • skeleton-esnext-webpack/src
  • skeleton-typescript-webpack/src

2 files changed

+2
-0
lines changed

skeleton-esnext-webpack/src/main.js

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import {bootstrap} from 'aurelia-bootstrapper-webpack';
2+
import 'bootstrap';
23

34
bootstrap(async (aurelia) => {
45
aurelia.use

skeleton-typescript-webpack/src/main.ts

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import {Aurelia} from 'aurelia-framework';
22
import {bootstrap} from 'aurelia-bootstrapper-webpack';
3+
import 'bootstrap';
34

45
bootstrap(async (aurelia: Aurelia) => {
56
aurelia.use

0 commit comments

Comments
 (0)