fix(@embark/demo): link css from dependency

This commit is contained in:
Ricardo Guilherme Schmidt 2019-05-09 13:45:32 -03:00 committed by Iuri Matias
parent cae8075682
commit 438e9178ce
3 changed files with 5 additions and 4 deletions

View File

@ -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">

View File

@ -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/",

View File

@ -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"
}
}