Failed to load module script: The server responded with a non-JavaScript MIME type of "text/html". Strict MIME type checking is enforced for module scripts per HTML spec.
// Express - you have to set static folder// Make a folder called publicconst express = require('express');
const app = express();
const path = require('path');
app.use(express.static(path.join(__dirname, 'public')));
A simple workaround:
config.js
exportdefault
{
// my json here...
}
then...
import config from'../config.js'
does not allow importof existing .json files, but does a job.