Skip to content

Commit

Permalink
Ensure dev server restart respects base removal (#8027)
Browse files Browse the repository at this point in the history
* fix(#6067): dev server restart respects base removal

* chore: remove baseCss
  • Loading branch information
natemoo-re authored Aug 10, 2023
1 parent 3bc74dd commit 1b8d302
Show file tree
Hide file tree
Showing 4 changed files with 44 additions and 60 deletions.
5 changes: 5 additions & 0 deletions .changeset/funny-eels-jog.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'astro': patch
---

Ensure dev server restarts respect when `base` is removed
38 changes: 34 additions & 4 deletions packages/astro/src/template/4xx.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { escape } from 'html-escaper';
import { baseCSS } from './css.js';

interface ErrorTemplateOptions {
/** a short description of the error */
Expand Down Expand Up @@ -28,14 +27,40 @@ export default function template({
<meta charset="UTF-8">
<title>${tabTitle}</title>
<style>
${baseCSS}
:root {
--gray-10: hsl(258, 7%, 10%);
--gray-20: hsl(258, 7%, 20%);
--gray-30: hsl(258, 7%, 30%);
--gray-40: hsl(258, 7%, 40%);
--gray-50: hsl(258, 7%, 50%);
--gray-60: hsl(258, 7%, 60%);
--gray-70: hsl(258, 7%, 70%);
--gray-80: hsl(258, 7%, 80%);
--gray-90: hsl(258, 7%, 90%);
--black: #13151A;
--accent-light: #E0CCFA;
}
body {
* {
box-sizing: border-box;
}
html {
background: var(--black);
color-scheme: dark;
accent-color: var(--accent-light);
}
body {
background-color: var(--gray-10);
color: var(--gray-80);
font-family: ui-monospace, Menlo, Monaco, "Cascadia Mono", "Segoe UI Mono", "Roboto Mono", "Oxygen Mono", "Ubuntu Monospace", "Source Code Pro", "Fira Mono", "Droid Sans Mono", "Courier New", monospace;
line-height: 1.5;
margin: 0;
}
a {
color: var(--accent-light);
}
.center {
Expand All @@ -52,6 +77,8 @@ export default function template({
color: white;
font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
font-weight: 700;
margin-top: 1rem;
margin-bottom: 0;
}
.statusCode {
Expand All @@ -63,11 +90,14 @@ export default function template({
width: 124px;
}
pre {
pre, code {
padding: 2px 8px;
background: rgba(0,0,0, 0.25);
border: 1px solid rgba(255,255,255, 0.25);
border-radius: 4px;
font-size: 1.2em;
margin-top: 0;
max-width: 60em;
}
</style>
</head>
Expand Down
50 changes: 0 additions & 50 deletions packages/astro/src/template/css.ts

This file was deleted.

11 changes: 5 additions & 6 deletions packages/astro/src/vite-plugin-astro-server/plugin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,12 +44,11 @@ export default function createVitePluginAstroServer({

return () => {
// Push this middleware to the front of the stack so that it can intercept responses.
if (settings.config.base !== '/') {
viteServer.middlewares.stack.unshift({
route: '',
handle: baseMiddleware(settings, logging),
});
}
// fix(#6067): always inject this to ensure zombie base handling is killed after restarts
viteServer.middlewares.stack.unshift({
route: '',
handle: baseMiddleware(settings, logging),
});
// Note that this function has a name so other middleware can find it.
viteServer.middlewares.use(async function astroDevHandler(request, response) {
if (request.url === undefined || !request.method) {
Expand Down

0 comments on commit 1b8d302

Please sign in to comment.