Running this Meteor app is giving browser console error:
modules-runtime.js?hash=2b888cb…:155 Uncaught Error: Cannot find module '././lib'
//lib.js
let age = { // key.value pairs here };
let lib = { // key.value pairs here };
export {lib1, lib2}
//footer.js
import { lib, age } from '././lib.js'
Is there a problem with the import path?, if not, why the error? thx