//constants.js
export const API_URL = "http://localhost:8080";
export const MAX_THREADS = 8;
//solution.js
import { API_URL, MAX_THREADS } from "./constants.js";
//console.log
console.log('Api url ' + API_URL);
console.log('Max threads ' + MAX_THREADS);
что здесь я делаю не так? почему задача не решается?