mirror of
https://github.com/lipis/flag-icons.git
synced 2026-04-27 01:46:02 +03:00
[GH-ISSUE #627] Conflict when use with webpack #346
Labels
No labels
3rd-party
3rd-party
bug
code
documentation
enhancement
fixed-in-master
flag-request
help needed
missing-flag
missing-flag
pull-request
wrong-flag
wrong-flag
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/flag-icons#346
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @furyscript on GitHub (Oct 4, 2019).
Original GitHub issue: https://github.com/lipis/flag-icons/issues/627
When I use this css into a webpack project, I have this warning
I think the problem is that there are two folder (1x1 and 4x3) with the icon as the same filename.
@lipis commented on GitHub (Oct 4, 2019):
but why they appear in the same folder?
@klazutin commented on GitHub (Oct 14, 2019):
In my case this was happening because the file loader was configured as such:
and all images were dumped into the
imagesfolder with no regard to their initial path. Adding[path]to the name parameter allowed original folders to be maintained, so the 1x1 and 4x3 flags are no longer mixed together:name: './images/[path][name].[ext]'