summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.changeset/tidy-deers-double.md5
-rw-r--r--packages/astro/src/core/preview/vite-plugin-astro-preview.ts39
-rw-r--r--packages/astro/test/preview-routing.test.js82
3 files changed, 103 insertions, 23 deletions
diff --git a/.changeset/tidy-deers-double.md b/.changeset/tidy-deers-double.md
new file mode 100644
index 000000000..ff6092d57
--- /dev/null
+++ b/.changeset/tidy-deers-double.md
@@ -0,0 +1,5 @@
+---
+"astro": patch
+---
+
+Load 404.html on all non-existent paths on astro preview.
diff --git a/packages/astro/src/core/preview/vite-plugin-astro-preview.ts b/packages/astro/src/core/preview/vite-plugin-astro-preview.ts
index aafd69cb4..9ec940c68 100644
--- a/packages/astro/src/core/preview/vite-plugin-astro-preview.ts
+++ b/packages/astro/src/core/preview/vite-plugin-astro-preview.ts
@@ -12,6 +12,18 @@ const HAS_FILE_EXTENSION_REGEXP = /^.*\.[^\\]+$/;
export function vitePluginAstroPreview(settings: AstroSettings): Plugin {
const { base, outDir, trailingSlash } = settings.config;
+ function handle404(req: IncomingMessage, res: ServerResponse) {
+ const errorPagePath = fileURLToPath(outDir + '/404.html');
+ if (fs.existsSync(errorPagePath)) {
+ res.statusCode = 404;
+ res.setHeader('Content-Type', 'text/html;charset=utf-8');
+ res.end(fs.readFileSync(errorPagePath));
+ } else {
+ res.statusCode = 404;
+ res.end(notFoundTemplate(req.url!, 'Not Found'));
+ }
+ }
+
return {
name: 'astro:preview',
apply: 'serve',
@@ -48,6 +60,14 @@ export function vitePluginAstroPreview(settings: AstroSettings): Plugin {
}
}
+ // TODO: look into why the replacement needs to happen here
+ for (const middleware of server.middlewares.stack) {
+ // This hardcoded name will not break between Vite versions
+ if ((middleware.handle as Connect.HandleFunction).name === 'vite404Middleware') {
+ middleware.handle = handle404;
+ }
+ }
+
next();
});
@@ -77,25 +97,6 @@ export function vitePluginAstroPreview(settings: AstroSettings): Plugin {
next();
});
-
- // Vite has its own 404 middleware, we replace it with ours instead.
- for (const middleware of server.middlewares.stack) {
- // This hardcoded name will not break between Vite versions
- if ((middleware.handle as Connect.HandleFunction).name === 'vite404Middleware') {
- // Fallback to 404 page if it exists
- middleware.handle = (req: IncomingMessage, res: ServerResponse) => {
- const errorPagePath = fileURLToPath(outDir + '/404.html');
- if (fs.existsSync(errorPagePath)) {
- res.statusCode = 404;
- res.setHeader('Content-Type', 'text/html;charset=utf-8');
- res.end(fs.readFileSync(errorPagePath));
- } else {
- res.statusCode = 404;
- res.end(notFoundTemplate(req.url!, 'Not Found'));
- }
- };
- }
- }
};
},
};
diff --git a/packages/astro/test/preview-routing.test.js b/packages/astro/test/preview-routing.test.js
index 9e986c47c..a4b83c1c3 100644
--- a/packages/astro/test/preview-routing.test.js
+++ b/packages/astro/test/preview-routing.test.js
@@ -1,4 +1,5 @@
import { expect } from 'chai';
+import * as cheerio from 'cheerio';
import { loadFixture } from './test-utils.js';
describe('Preview Routing', function () {
@@ -182,6 +183,41 @@ describe('Preview Routing', function () {
expect(response.status).to.equal(404);
});
});
+
+ describe('Load custom 404.html', () => {
+ /** @type {import('./test-utils').Fixture} */
+ let fixture;
+ /** @type {import('./test-utils').PreviewServer} */
+ let previewServer;
+
+ let $;
+
+ before(async () => {
+ fixture = await loadFixture({
+ root: './fixtures/custom-404-html/',
+ server: {
+ port: 4003,
+ },
+ });
+ await fixture.build();
+ previewServer = await fixture.preview();
+ });
+
+ after(async () => {
+ await previewServer.stop();
+ });
+
+ it('renders custom 404 for /a', async () => {
+ const res = await fixture.fetch('/a');
+ expect(res.status).to.equal(404);
+
+ const html = await res.text();
+ $ = cheerio.load(html);
+
+ expect($('h1').text()).to.equal('Page not found');
+ expect($('p').text()).to.equal('This 404 is a static HTML file.');
+ });
+ });
});
describe('build format: file', () => {
@@ -201,7 +237,7 @@ describe('Preview Routing', function () {
},
trailingSlash: 'never',
server: {
- port: 4003,
+ port: 4004,
},
});
await fixture.build();
@@ -261,7 +297,7 @@ describe('Preview Routing', function () {
},
trailingSlash: 'always',
server: {
- port: 4004,
+ port: 4005,
},
});
await fixture.build();
@@ -324,7 +360,7 @@ describe('Preview Routing', function () {
},
trailingSlash: 'ignore',
server: {
- port: 4005,
+ port: 4006,
},
});
await fixture.build();
@@ -387,7 +423,7 @@ describe('Preview Routing', function () {
},
trailingSlash: 'ignore',
server: {
- port: 4006,
+ port: 4007,
},
});
await fixture.build();
@@ -423,5 +459,43 @@ describe('Preview Routing', function () {
expect(response.status).to.equal(404);
});
});
+
+ describe('Load custom 404.html', () => {
+ /** @type {import('./test-utils').Fixture} */
+ let fixture;
+ /** @type {import('./test-utils').PreviewServer} */
+ let previewServer;
+
+ let $;
+
+ before(async () => {
+ fixture = await loadFixture({
+ root: './fixtures/custom-404-html/',
+ build: {
+ format: 'file',
+ },
+ server: {
+ port: 4008,
+ },
+ });
+ await fixture.build();
+ previewServer = await fixture.preview();
+ });
+
+ after(async () => {
+ await previewServer.stop();
+ });
+
+ it('renders custom 404 for /a', async () => {
+ const res = await fixture.fetch('/a');
+ expect(res.status).to.equal(404);
+
+ const html = await res.text();
+ $ = cheerio.load(html);
+
+ expect($('h1').text()).to.equal('Page not found');
+ expect($('p').text()).to.equal('This 404 is a static HTML file.');
+ });
+ });
});
});