jetpack
Version:
Jetpack wraps webpack and nodemon to give you the best development workflow.
73 lines (72 loc) • 1.88 kB
HTML
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>jetpack not running</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background: #fff;
font-family:
-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans',
'Helvetica Neue', sans-serif;
color: #333;
padding: 20px;
}
.container {
text-align: center;
max-width: 300px;
}
h1 {
color: #111;
font-size: 18px;
font-weight: 600;
margin-bottom: 10px;
}
p {
color: #666;
font-size: 14px;
line-height: 1.6;
}
code {
font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace;
background: #f0f0f0;
padding: 2px 6px;
border-radius: 4px;
font-size: 13px;
color: #333;
}
aside {
color: #111;
font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace;
white-space: pre;
margin-bottom: 10px;
transform: rotate(5deg);
}
.fire {
transform: rotate(200deg);
font-size: 7px;
color: orange;
margin-top: -13px;
margin-left: -2px;
}
</style>
</head>
<body>
<div class="container">
<aside>▲</aside>
<aside class="fire">▲</aside>
<h1>jetpack not running</h1>
<p>Failed to connect to the jetpack dev server. Start it by running <code>jetpack</code> in your project.</p>
</div>
</body>
</html>