Quick tip: whenever TypeScript yells at you saying "Cannot find module '@/assets/images/sample.png'" when importing a image" just add this to your types:
```typescript
declare module '*.png' {
const value: any;
export default value;
}
```
If there's a proper/easy/better way happy to learn. :)
```typescript
declare module '*.png' {
const value: any;
export default value;
}
```
If there's a proper/easy/better way happy to learn. :)
Comments