Skip to content

Commit

Permalink
fix(remix-dev): add types for importing *.ico files (#5430)
Browse files Browse the repository at this point in the history
  • Loading branch information
TomerAberbach authored Mar 9, 2023
1 parent d6b0499 commit 375ad78
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .changeset/add-ico-types.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
"remix": patch
"@remix-run/dev": patch
---

add types for importing `*.ico` files
1 change: 1 addition & 0 deletions contributors.yml
Original file line number Diff line number Diff line change
Expand Up @@ -461,6 +461,7 @@
- tjefferson08
- tombiju
- tombyrer
- TomerAberbach
- toyozaki
- turkerdev
- tvanantwerp
Expand Down
4 changes: 4 additions & 0 deletions packages/remix-dev/modules.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,10 @@ declare module "*.hdr" {
let asset: string;
export default asset;
}
declare module "*.ico" {
let asset: string;
export default asset;
}
declare module "*.jpeg" {
let asset: string;
export default asset;
Expand Down

0 comments on commit 375ad78

Please sign in to comment.