mirror of https://github.com/embarklabs/embark.git
fix(@embark/demo): link css from dependency
This commit is contained in:
parent
cae8075682
commit
438e9178ce
|
@ -1,8 +1,7 @@
|
|||
<html>
|
||||
<head>
|
||||
<title>Embark - SimpleStorage Demo</title>
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
|
||||
<link rel="stylesheet" href="css/bootstrap.min.css">
|
||||
</head>
|
||||
<body class="container">
|
||||
<div id="app">
|
||||
|
|
|
@ -3,7 +3,8 @@
|
|||
"app": {
|
||||
"js/dapp.js": ["app/dapp.js"],
|
||||
"index.html": "app/index.html",
|
||||
"images/": ["app/images/**"]
|
||||
"images/": ["app/images/**"],
|
||||
"css/bootstrap.min.css": "node_modules/bootstrap/dist/css/bootstrap.min.css"
|
||||
},
|
||||
"buildDir": "dist/",
|
||||
"config": "config/",
|
||||
|
|
|
@ -40,6 +40,7 @@
|
|||
"react": "16.7.0",
|
||||
"react-bootstrap": "0.32.4",
|
||||
"react-dom": "16.7.0",
|
||||
"rimraf": "2.6.3"
|
||||
"rimraf": "2.6.3",
|
||||
"bootstrap": "3.3.7"
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue