diff options
author | Joseph Ditton <jditton.atomic@gmail.com> | 2021-12-08 18:06:50 -0700 |
---|---|---|
committer | Joseph Ditton <jditton.atomic@gmail.com> | 2021-12-08 18:06:50 -0700 |
commit | 68384d7e1d5776b372ebc64c2ea29d8b649d841a (patch) | |
tree | 57e8dc72fecb0258d069db848b610747b371e54d /views/index.hbs | |
parent | 5c700ff0ea09ba62521bc03feade57cbaee27a3d (diff) | |
download | locchat-68384d7e1d5776b372ebc64c2ea29d8b649d841a.tar.gz locchat-68384d7e1d5776b372ebc64c2ea29d8b649d841a.zip |
adds correct path for js and css from view
Diffstat (limited to 'views/index.hbs')
-rw-r--r-- | views/index.hbs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/views/index.hbs b/views/index.hbs index a4c0f2d..890ee25 100644 --- a/views/index.hbs +++ b/views/index.hbs @@ -1,9 +1,9 @@ <html> <head> - <link rel="stylesheet" href="index.css" /> + <link rel="stylesheet" href="/index.css" /> </head> <body> <div id="app" /> - <script src="index.js"></script> + <script src="/index.js"></script> </body> </html>
\ No newline at end of file |