Skip to content

Commit

Permalink
Prevent building .html files in hybrid mode (#7805)
Browse files Browse the repository at this point in the history
* Prevent building .html files in hybrid mode

* Adding a changeset
  • Loading branch information
matthewp authored Jul 26, 2023
1 parent db8c040 commit 42a21b5
Show file tree
Hide file tree
Showing 6 changed files with 57 additions and 3 deletions.
5 changes: 5 additions & 0 deletions .changeset/ninety-kids-fail.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@astrojs/netlify': patch
---

Prevent building .html file redirects in hybrid mode
1 change: 1 addition & 0 deletions packages/integrations/netlify/src/integration-functions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ function netlifyFunctions({
updateConfig({
outDir,
build: {
redirects: false,
client: outDir,
server: new URL('./.netlify/functions-internal/', config.root),
},
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
export const prerender = false;
---
<html>
<head><title>Testing</title></head>
<body>
<h1>Testing</h1>
</body>
</html>
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
---
return Astro.redirect('/');
---
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
---
export const prerender = false;
export const getStaticPaths = (async () => {
const posts = [
{ slug: 'one', data: {draft: false, title: 'One'} },
{ slug: 'two', data: {draft: false, title: 'Two'} }
];
return posts.map((post) => {
return {
params: { slug: post.slug },
props: { draft: post.data.draft, title: post.data.title },
};
});
})
const { slug } = Astro.params;
const { title } = Astro.props;
---
<html>
<head>
<title>{ title }</title>
</head>
<body>
<h1>{ title }</h1>
</body>
</html>
15 changes: 12 additions & 3 deletions packages/integrations/netlify/test/functions/redirects.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ describe('SSG - Redirects', () => {

before(async () => {
fixture = await loadFixture({
root: new URL('../static/fixtures/redirects/', import.meta.url).toString(),
output: 'server',
root: new URL('../functions/fixtures/redirects/', import.meta.url).toString(),
output: 'hybrid',
adapter: netlifyAdapter({
dist: new URL('../static/fixtures/redirects/dist/', import.meta.url),
dist: new URL('../functions/fixtures/redirects/dist/', import.meta.url),
}),
site: `http://example.com`,
integrations: [testIntegration()],
Expand Down Expand Up @@ -45,4 +45,13 @@ describe('SSG - Redirects', () => {
]);
expect(redirects).to.matchSnapshot();
});

it('Does not create .html files', async () => {
try {
await fixture.readFile('/other/index.html');
expect(false).to.equal(true, 'this file should not exist');
} catch {
expect(true).to.equal(true);
}
});
});

0 comments on commit 42a21b5

Please sign in to comment.