Skip to content

Commit

Permalink
feat: refactor scss build
Browse files Browse the repository at this point in the history
  • Loading branch information
chriswhong committed Sep 5, 2019
1 parent 9acba0b commit 0be49ef
Show file tree
Hide file tree
Showing 9 changed files with 106 additions and 2,651 deletions.
11 changes: 11 additions & 0 deletions app/app.development.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<title>Qri Desktop</title>
<link rel='stylesheet' href='http://localhost:1212/dist/bundle.css' />
<body>
<div id='root'></div>
<script type='text/javascript' src='http://localhost:1212/dist/bundle.js'></script>
</body>
</html>
32 changes: 0 additions & 32 deletions app/app.html

This file was deleted.

11 changes: 11 additions & 0 deletions app/app.production.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<title>Qri Desktop</title>
<link rel='stylesheet' href='./dist/bundle.css' />
<body>
<div id='root'></div>
<script type='text/javascript' src='./dist/bundle.js'></script>
</body>
</html>
Loading

0 comments on commit 0be49ef

Please sign in to comment.