当我使用ng build或ng服务运行我的Angular 2 Electron项目时,它可以100%运行所有路由器,一切正常。 当我开始尝试用电子打包器或构建器打包我的应用程序时,我得到的路线不再有效。而不是加载Index.html然后立即导航到我的家庭组件它停留在索引。甚至我的scss样式表都没有工作,应立即加载。
的index.html
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>App</title>
<script>
document.write('<base href="' + document.location + '" />');
</script>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/x-icon" href="favicon.ico">
<script>window.$ = window.jQuery = require('./public/jquery/dist/jquery.min.js');</script>
<script src="./public/bootstrap/dist/js/bootstrap.min.js"></script>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="./public/bootstrap/dist/css/bootstrap.min.css">
<!-- Optional theme -->
<link rel="stylesheet" href="./public/bootstrap/dist/css/bootstrap-theme.min.css">
</head>
<body>
//The App-root loads from the routes and loads up my home component
<app-root>
Loading...
</app-root>
</body>
</html>
main.js
const electron = require('electron');
const app = electron.app;
const BrowserWindow = electron.BrowserWindow;
let mainWindow;
function createWindow () {
mainWindow = new BrowserWindow({
width: 1024, height: 768,
title:"App"
});
mainWindow.setFullScreen(true);
mainWindow.loadURL(`file://${__dirname}/index.html`);
mainWindow.webContents.openDevTools();
mainWindow.on('closed', function () {
mainWindow = null;
})
}
app.on('ready', createWindow);
app.on('window-all-closed', function () {
if (process.platform !== 'darwin') {
app.quit();
}
})
app.on('activate', function () {
if (mainWindow === null) {
createWindow();
}
})