Я пытаюсь разработать настольное приложение Electron JS + Angular JS
.Я упомянул этот веб-сайт.
Сценарий, который я даю, -
"start:electron": "ng build --base-href ./ && electron ."
, а основная функция createWindow имеет вид
function createWindow () {
mainWindow = new BrowserWindow({
width: 800,
height: 600,
webPreferences: {
nodeIntegration: true
}
});
mainWindow.loadURL(
url.format({
pathname: path.join(__dirname, `/dist/index.html`),
protocol: "file:",
slashes: true
})
);
// Open the DevTools.
mainWindow.webContents.openDevTools();
mainWindow.on('closed', function () {
mainWindow = null;
});
}
После запуска, используя следующую команду
npm run start:electron
Я получаю приведенную ниже ошибку в консоли.
Failed to load module script: The server responded with a non-JavaScript MIME type of "". Strict MIME type checking is enforced for module scripts per HTML spec.
Прикрепление снимка экрана для справки.
[![enter image description here][2]][2]
Как избавиться от проблемы?
Ubuntu: 18.04
Узел js: 10.16.0
Угловой: v8