Skip to content

Commit e149841

Browse files
committed
Merge pull request parse-community#118 from jeancarlozapata/patch-1
Fix assets with incorrect routes
2 parents 54f92f6 + 1157eea commit e149841

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

public/test.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@
33
<head>
44
<title>Parse Serve example</title>
55
<link href="https://cdnjs.cloudflare.com/ajax/libs/pure/0.6.0/grids-min.css" rel="stylesheet">
6-
<link href="/static/assets/css/style.css" rel="stylesheet">
6+
<link href="/public/assets/css/style.css" rel="stylesheet">
77
</head>
88

99
<body>
1010
<div class="container">
1111
<div class="align-center">
12-
<img id="parse-logo" src="/static/assets/images/parse-logo.png">
12+
<img id="parse-logo" src="/public/assets/images/parse-logo.png">
1313
</div>
1414

1515
<div class="advice">
@@ -96,6 +96,6 @@
9696

9797
</div>
9898
<script src="https://code.jquery.com/jquery-2.2.0.min.js"></script>
99-
<script src="/static/assets/js/script.js"></script>
99+
<script src="/public/assets/js/script.js"></script>
100100
</body>
101101
</html>

0 commit comments

Comments
 (0)