mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-07-29 11:02:28 +08:00
10 lines
271 B
TypeScript
10 lines
271 B
TypeScript
/* eslint-disable */
|
|
import axios from 'axios';
|
|
|
|
module.exports = async function() {
|
|
// Configure axios for tests to use.
|
|
const host = process.env.HOST ?? 'localhost';
|
|
const port = process.env.PORT ?? '3000';
|
|
axios.defaults.baseURL = `http://${host}:${port}`;
|
|
};
|