Files
docbox/index.html
Tom MacWright a06e6a8ffa Make build process repeatable. Fixes #7
Previously when you ran `npm run build`, it would change index.html
in a way that prevented you from running `npm run build` again.
This change makes the builder more sophisticated, ensuring that
START and STOP markers stay in the index.html file, letting you
re-run the command.
2016-03-22 11:11:47 -04:00

17 lines
513 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8' />
<meta http-equiv='X-UA-Compatible' content='IE=11' />
<title>Docbox</title>
<meta name='viewport' content='initial-scale=1,maximum-scale=1,user-scalable=no' />
<link href='css/base.css' rel='stylesheet' />
<link href='css/style.css' rel='stylesheet' />
<link href='css/railscasts.css' rel='stylesheet' />
</head>
<body>
<!--START--><div id='app'></div><!--STOP-->
<script src='bundle.js'></script>
</body>
</html>