mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-09-22 06:00:56 +02: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: {
|
||||
alias: {
|
||||
'~': path.join(__dirname, 'src/'),
|
||||
$fonts: resolve('public/fonts'),
|
||||
$fonts: resolve('/fonts'),
|
||||
},
|
||||
},
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue