react-express-typescript/scripts/webpack/const.js
2023-03-22 00:35:49 +08:00

13 lines
222 B
JavaScript

const path = require("path");
const PROJECT_PATH = path.resolve(__dirname, "../../");
const SERVER_HOST = "127.0.0.1";
const SERVER_PORT = 3000;
module.exports = {
PROJECT_PATH,
SERVER_HOST,
SERVER_PORT,
};