mirror of
https://github.com/CodePhiliaX/Chat2DB.git
synced 2025-09-27 00:54:49 +08:00
13 lines
217 B
JavaScript
13 lines
217 B
JavaScript
const DEV_WEB_URL = 'http://localhost:8000/';
|
|
|
|
/** jar包名 */
|
|
const JAVA_APP_NAME = 'chat2db-server-start.jar';
|
|
const JAVA_PATH = 'jre/bin/java';
|
|
|
|
module.exports = {
|
|
DEV_WEB_URL,
|
|
|
|
JAVA_APP_NAME,
|
|
JAVA_PATH,
|
|
};
|