mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-18 01:10:14 +01:00
fix: fonts warning (#1318)
* fix: Fix a fonts warning
The warning was:
files in the public directory are served at the root path.
Instead of /public/fonts/soehne-buch.woff2, use /fonts/soehne-buch.woff2.
* See if it likes /fonts better
This commit is contained in:
parent
968b8ccdbd
commit
d4c846b543
1 changed files with 1 additions and 1 deletions
|
|
@ -42,7 +42,7 @@ export default defineConfig({
|
||||||
resolve: {
|
resolve: {
|
||||||
alias: {
|
alias: {
|
||||||
'~': path.join(__dirname, 'src/'),
|
'~': path.join(__dirname, 'src/'),
|
||||||
$fonts: resolve('public/fonts'),
|
$fonts: resolve('/fonts'),
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue