You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
435 B
JavaScript
18 lines
435 B
JavaScript
const path = require('path');
|
|
// 静态资源位置
|
|
const public_path = path.join(__dirname, './public/');
|
|
const upload_path = public_path + 'uploads\\';
|
|
module.exports = {
|
|
public_path,
|
|
upload_path,
|
|
port: 8117,
|
|
VSPlayer: 'VSPlayer.exe',
|
|
"mysql_config": {
|
|
"host": process.env.NODE_ENV === 'production' ? '127.0.0.1' : "192.168.0.133",
|
|
"user": "root",
|
|
"password": "Leaper@123",
|
|
"database": "lipo_duoji"
|
|
},
|
|
}
|
|
|