mirror of https://github.com/FOME-Tech/wiki.git
Enable strict URL validation (#147)
This commit is contained in:
parent
a0032a8c36
commit
3fb2a51cf7
|
@ -27,8 +27,12 @@ const config = {
|
|||
tagline: 'Free Open Motorsports ECU',
|
||||
url,
|
||||
baseUrl: '/',
|
||||
|
||||
// strict URL validation
|
||||
onBrokenLinks: 'throw',
|
||||
onBrokenMarkdownLinks: 'warn',
|
||||
onBrokenMarkdownLinks: 'throw',
|
||||
onDuplicateRoutes: 'throw',
|
||||
|
||||
noIndex: false, // adds <meta name="robots" content="noindex, nofollow"> to every page
|
||||
favicon: 'img/icons/favicon.ico',
|
||||
trailingSlash: true, // adds trailing slash to all links since we are using Cloudflare Pages
|
||||
|
|
Loading…
Reference in New Issue