diff --git a/src/components/FontAwesomeIcon/scss/_variables.scss b/src/components/FontAwesomeIcon/scss/_variables.scss index 2432f3e..b1171d7 100644 --- a/src/components/FontAwesomeIcon/scss/_variables.scss +++ b/src/components/FontAwesomeIcon/scss/_variables.scss @@ -54,7 +54,7 @@ $fa-stack-width: ($fa-fw-width * 2) !default; $fa-stack-z-index: auto !default; $fa-font-display: block !default; -$fa-font-path: './webfonts' !default; +$fa-font-path: '/static/fonts' !default; $fa-primary-color: inherit !default; $fa-primary-opacity: 1 !default; diff --git a/src/components/FontAwesomeIcon/webfonts/fa-brands-400.ttf b/src/static/fonts/fa-brands-400.ttf similarity index 100% rename from src/components/FontAwesomeIcon/webfonts/fa-brands-400.ttf rename to src/static/fonts/fa-brands-400.ttf diff --git a/src/components/FontAwesomeIcon/webfonts/fa-brands-400.woff2 b/src/static/fonts/fa-brands-400.woff2 similarity index 100% rename from src/components/FontAwesomeIcon/webfonts/fa-brands-400.woff2 rename to src/static/fonts/fa-brands-400.woff2 diff --git a/src/components/FontAwesomeIcon/webfonts/fa-duotone-900.ttf b/src/static/fonts/fa-duotone-900.ttf similarity index 100% rename from src/components/FontAwesomeIcon/webfonts/fa-duotone-900.ttf rename to src/static/fonts/fa-duotone-900.ttf diff --git a/src/components/FontAwesomeIcon/webfonts/fa-duotone-900.woff2 b/src/static/fonts/fa-duotone-900.woff2 similarity index 100% rename from src/components/FontAwesomeIcon/webfonts/fa-duotone-900.woff2 rename to src/static/fonts/fa-duotone-900.woff2 diff --git a/src/components/FontAwesomeIcon/webfonts/fa-light-300.ttf b/src/static/fonts/fa-light-300.ttf similarity index 100% rename from src/components/FontAwesomeIcon/webfonts/fa-light-300.ttf rename to src/static/fonts/fa-light-300.ttf diff --git a/src/components/FontAwesomeIcon/webfonts/fa-light-300.woff2 b/src/static/fonts/fa-light-300.woff2 similarity index 100% rename from src/components/FontAwesomeIcon/webfonts/fa-light-300.woff2 rename to src/static/fonts/fa-light-300.woff2 diff --git a/src/components/FontAwesomeIcon/webfonts/fa-regular-400.ttf b/src/static/fonts/fa-regular-400.ttf similarity index 100% rename from src/components/FontAwesomeIcon/webfonts/fa-regular-400.ttf rename to src/static/fonts/fa-regular-400.ttf diff --git a/src/components/FontAwesomeIcon/webfonts/fa-regular-400.woff2 b/src/static/fonts/fa-regular-400.woff2 similarity index 100% rename from src/components/FontAwesomeIcon/webfonts/fa-regular-400.woff2 rename to src/static/fonts/fa-regular-400.woff2 diff --git a/src/components/FontAwesomeIcon/webfonts/fa-sharp-solid-900.ttf b/src/static/fonts/fa-sharp-solid-900.ttf similarity index 100% rename from src/components/FontAwesomeIcon/webfonts/fa-sharp-solid-900.ttf rename to src/static/fonts/fa-sharp-solid-900.ttf diff --git a/src/components/FontAwesomeIcon/webfonts/fa-sharp-solid-900.woff2 b/src/static/fonts/fa-sharp-solid-900.woff2 similarity index 100% rename from src/components/FontAwesomeIcon/webfonts/fa-sharp-solid-900.woff2 rename to src/static/fonts/fa-sharp-solid-900.woff2 diff --git a/src/components/FontAwesomeIcon/webfonts/fa-solid-900.ttf b/src/static/fonts/fa-solid-900.ttf similarity index 100% rename from src/components/FontAwesomeIcon/webfonts/fa-solid-900.ttf rename to src/static/fonts/fa-solid-900.ttf diff --git a/src/components/FontAwesomeIcon/webfonts/fa-solid-900.woff2 b/src/static/fonts/fa-solid-900.woff2 similarity index 100% rename from src/components/FontAwesomeIcon/webfonts/fa-solid-900.woff2 rename to src/static/fonts/fa-solid-900.woff2 diff --git a/src/components/FontAwesomeIcon/webfonts/fa-thin-100.ttf b/src/static/fonts/fa-thin-100.ttf similarity index 100% rename from src/components/FontAwesomeIcon/webfonts/fa-thin-100.ttf rename to src/static/fonts/fa-thin-100.ttf diff --git a/src/components/FontAwesomeIcon/webfonts/fa-thin-100.woff2 b/src/static/fonts/fa-thin-100.woff2 similarity index 100% rename from src/components/FontAwesomeIcon/webfonts/fa-thin-100.woff2 rename to src/static/fonts/fa-thin-100.woff2 diff --git a/src/components/FontAwesomeIcon/webfonts/fa-v4compatibility.ttf b/src/static/fonts/fa-v4compatibility.ttf similarity index 100% rename from src/components/FontAwesomeIcon/webfonts/fa-v4compatibility.ttf rename to src/static/fonts/fa-v4compatibility.ttf diff --git a/src/components/FontAwesomeIcon/webfonts/fa-v4compatibility.woff2 b/src/static/fonts/fa-v4compatibility.woff2 similarity index 100% rename from src/components/FontAwesomeIcon/webfonts/fa-v4compatibility.woff2 rename to src/static/fonts/fa-v4compatibility.woff2 diff --git a/vite.config.ts b/vite.config.ts index df3d574..80abdfa 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -35,12 +35,12 @@ export default ({ mode }: ConfigEnv): UserConfig => { '/api': { target: env.VITE_BASE_URL, changeOrigin: true, - rewrite: (path) => path.replace(/^\/api/, ''), + rewrite: path => path.replace(/^\/api/, ''), }, '/upload': { target: env.VITE_BASE_URL, changeOrigin: true, - rewrite: (path) => path.replace(/^\/upload/, ''), + rewrite: path => path.replace(/^\/upload/, ''), }, }, },