mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-09-21 21:50:49 +02:00
14 lines
770 B
JavaScript
14 lines
770 B
JavaScript
const path = require('path');
|
|
|
|
module.exports = {
|
|
root: path.resolve(__dirname, '..', '..'),
|
|
uploads: path.resolve(__dirname, '..', '..', 'uploads'),
|
|
clientPath: path.resolve(__dirname, '..', '..', 'client'),
|
|
dist: path.resolve(__dirname, '..', '..', 'client', 'dist'),
|
|
publicPath: path.resolve(__dirname, '..', '..', 'client', 'public'),
|
|
fonts: path.resolve(__dirname, '..', '..', 'client', 'public', 'fonts'),
|
|
assets: path.resolve(__dirname, '..', '..', 'client', 'public', 'assets'),
|
|
imageOutput: path.resolve(__dirname, '..', '..', 'client', 'public', 'images'),
|
|
structuredTools: path.resolve(__dirname, '..', 'app', 'clients', 'tools', 'structured'),
|
|
pluginManifest: path.resolve(__dirname, '..', 'app', 'clients', 'tools', 'manifest.json'),
|
|
};
|