Website bugfix (#9415)
* remove exportTrailingSlash from nextjs config * drop out unneeded font * add getting-started redirect
This commit is contained in:
parent
415a9c47b6
commit
b4619b20f9
|
@ -24,6 +24,7 @@
|
|||
/docs/command-line/* /docs/commands/:splat 200
|
||||
/docs/extend/* /docs/extending/:splat 200
|
||||
|
||||
/intro/getting-started https://learn.hashicorp.com/packer/getting-started/install 301!
|
||||
/intro/getting-started/install https://learn.hashicorp.com/packer/getting-started/install 301!
|
||||
/intro/getting-started/install.html https://learn.hashicorp.com/packer/getting-started/install 301!
|
||||
/intro/getting-started/build-image https://learn.hashicorp.com/packer/getting-started/build-image 301!
|
||||
|
|
|
@ -15,7 +15,6 @@ module.exports = withHashicorp({
|
|||
},
|
||||
],
|
||||
},
|
||||
exportTrailingSlash: true,
|
||||
// Note: These are meant to be public, it's not a mistake that they are here
|
||||
env: {
|
||||
HASHI_ENV: process.env.HASHI_ENV,
|
||||
|
|
|
@ -30,12 +30,6 @@ export default function App({ Component, pageProps }) {
|
|||
description="Packer is a free and open source tool for creating golden images for multiple
|
||||
platforms from a single source configuration."
|
||||
image="https://www.packer.io/img/og-image.png"
|
||||
stylesheet={[
|
||||
{
|
||||
href:
|
||||
'https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700&display=swap',
|
||||
},
|
||||
]}
|
||||
icon={[{ href: '/favicon.ico' }]}
|
||||
preload={[
|
||||
{ href: '/fonts/klavika/medium.woff2', as: 'font' },
|
||||
|
|
Loading…
Reference in New Issue