Skip to content
Snippets Groups Projects
Commit 535420e5 authored by mateuszmiko's avatar mateuszmiko
Browse files

Merge branch 'bug/display_svg_url' into 'development'

Bug/display svg url

See merge request !12
parents 837233d8 dba82b7d
No related branches found
No related tags found
2 merge requests!223reset the pin numbers before search results are fetch (so the results will be...,!12Bug/display svg url
Pipeline #78722 failed
...@@ -10,12 +10,12 @@ declare module '*.png' { ...@@ -10,12 +10,12 @@ declare module '*.png' {
export default content; export default content;
} }
declare module '*.svg' { declare module '*.svg?component' {
const content: React.FC<React.SVGProps<SVGSVGElement>>; const content: React.FC<React.SVGProps<SVGSVGElement>>;
export default content; export default content;
} }
declare module '*.svg?url' { declare module '*.svg' {
const content: any; const content: any;
export default content; export default content;
} }
......
...@@ -7,12 +7,12 @@ const nextConfig = { ...@@ -7,12 +7,12 @@ const nextConfig = {
{ {
...fileLoaderRule, ...fileLoaderRule,
test: /\.svg$/i, test: /\.svg$/i,
resourceQuery: /url/, resourceQuery: { not: /component/ },
}, },
{ {
test: /\.svg$/i, test: /\.svg$/i,
issuer: /\.[jt]sx?$/, issuer: /\.[jt]sx?$/,
resourceQuery: { not: /url/ }, resourceQuery: /component/,
use: ['@svgr/webpack'], use: ['@svgr/webpack'],
}, },
); );
......
import ChevronRightIcon from '@/assets/vectors/icons/chevron-right.svg'; import ChevronRightIcon from '@/assets/vectors/icons/chevron-right.svg?component';
import ChevronLeftIcon from '@/assets/vectors/icons/chevron-left.svg'; import ChevronLeftIcon from '@/assets/vectors/icons/chevron-left.svg?component';
import ChevronUpIcon from '@/assets/vectors/icons/chevron-up.svg'; import ChevronUpIcon from '@/assets/vectors/icons/chevron-up.svg?component';
import ChevronDownIcon from '@/assets/vectors/icons/chevron-down.svg'; import ChevronDownIcon from '@/assets/vectors/icons/chevron-down.svg?component';
import PlusIcon from '@/assets/vectors/icons/plus.svg'; import PlusIcon from '@/assets/vectors/icons/plus.svg?component';
import ArrowIcon from '@/assets/vectors/icons/arrow.svg'; import ArrowIcon from '@/assets/vectors/icons/arrow.svg?component';
import DotsIcon from '@/assets/vectors/icons/dots.svg'; import DotsIcon from '@/assets/vectors/icons/dots.svg?component';
type Name = type Name =
| 'chevron-right' | 'chevron-right'
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment