Skip to content

Commit

Permalink
fix(web): 🐛📦🚧 downgrade next to support <Image> in standalone
Browse files Browse the repository at this point in the history
  • Loading branch information
collinbarrett committed Apr 11, 2023
1 parent 7a04719 commit ea6d661
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 14 deletions.
13 changes: 0 additions & 13 deletions web/components/Header/Logo.tsx

This file was deleted.

9 changes: 9 additions & 0 deletions web/components/Header/Logo/Logo.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import Link from "next/link";
import logo from "./logo_filterlists.png";
import Image from "next/image";

export const Logo = () => (
<Link href="/">
<Image src={logo} alt="FilterLists logo" />
</Link>
);
3 changes: 3 additions & 0 deletions web/components/Header/Logo/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
import { Logo } from "./Logo";

export { Logo };
File renamed without changes
2 changes: 1 addition & 1 deletion web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"antd": "^5.4.1",
"eslint": "8.38.0",
"eslint-config-next": "13.3.0",
"next": "13.3.0",
"next": "13.2.4",
"react": "18.2.0",
"react-dom": "18.2.0",
"sharp": "^0.32.0",
Expand Down

0 comments on commit ea6d661

Please sign in to comment.