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.
17 lines
513 B
HTML
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>
|