Skip to content

Commit

Permalink
site: add /faq redirect to GitHub wiki FAQ
Browse files Browse the repository at this point in the history
  • Loading branch information
Conduitry committed May 22, 2019
1 parent d548a5a commit a6c05ed
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions site/src/routes/faq.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
export function get(req, res) {
res.writeHead(302, { Location: 'https://github.com/sveltejs/svelte/wiki/FAQ' });
res.end();
}

1 comment on commit a6c05ed

@tivac
Copy link
Contributor

@tivac tivac commented on a6c05ed May 22, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why is the FAQ stored in the GH wiki at all? The wiki isn't editable by anyone who isn't in the org so I can't add anything to it or even propose changes beyond filing an issue. Seems like something that would be better as a .md file and live directly on svelte.dev

Please sign in to comment.