Fix link of stylesheet
Use an absolute path so that it always starts at the root of the project.
This commit is contained in:
parent
b73e35498f
commit
3bfc56301f
1 changed files with 1 additions and 1 deletions
|
@ -5,7 +5,7 @@ export default function({ title, children }) {
|
|||
<meta charSet="utf-8"/>
|
||||
<title>{ title }</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
||||
<link rel="stylesheet" href="styles/main.css"/>
|
||||
<link rel="stylesheet" href="/styles/main.css"/>
|
||||
</head>
|
||||
<body>
|
||||
<div className="main-content">
|
||||
|
|
Loading…
Reference in a new issue