主流程中发生JavaScript错误

时间:2019-07-19 15:38:49

标签: angular electron

使用以下CLI命令在Windows上成功构建.exe文件后,我在运行角电子桌面应用程序时遇到问题:

npm run electron:windows

我遇到了错误

  

主要过程中发生Javascript错误
  未捕获的异常:
  错误:找不到模块'./src/app/models/user.model'

我在github存储库上找不到任何解决方案:https://github.com/maximegris/angular-electron

main.ts文件

import { app, BrowserWindow, screen, ipcMain } from 'electron';
import * as path from 'path';
import * as url from 'url';
import { createConnection, getConnection } from 'typeorm';
import { User } from './src/app/models/user.model';

如何设置src / app / models / user.model中的user.model.ts文件的路径,以便在构建要发布的应用程序时电子可以找到它。

注意:开发过程中一切正常。

0 个答案:

没有答案