Skip to content

Commit

Permalink
Update/cleanup dependancies, image component adjustments
Browse files Browse the repository at this point in the history
  • Loading branch information
itsmichaelwest committed Oct 25, 2023
1 parent 1afe941 commit 717495c
Show file tree
Hide file tree
Showing 4 changed files with 4,761 additions and 9,549 deletions.
5 changes: 2 additions & 3 deletions components/Image.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,12 @@

import NextImage from 'next/image'

const Image = ({ src, alt, height, width, layout="responsive" }) => {
const Image = ({ src, alt, height, width }) => {
const imageProps = {
src,
alt,
height,
width,
layout
width
}

return (
Expand Down
1 change: 0 additions & 1 deletion next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,6 @@ module.exports = {
test: /\.svg$/,
use: ["@svgr/webpack"]
})

return config;
}
}

1 comment on commit 717495c

@vercel
Copy link

@vercel vercel bot commented on 717495c Oct 25, 2023

Choose a reason for hiding this comment

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

Please sign in to comment.