🐛 Fix building issues
This commit is contained in:
		
							
								
								
									
										1
									
								
								.gitignore
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										1
									
								
								.gitignore
									
									
									
									
										vendored
									
									
								
							| @@ -3,3 +3,4 @@ dist | ||||
| out | ||||
| .DS_Store | ||||
| *.log* | ||||
| *.lock | ||||
| @@ -13,12 +13,14 @@ asarUnpack: | ||||
|   - resources/** | ||||
| win: | ||||
|   executableName: MatrixTerminal | ||||
|   publisherName: Solsynth LLC | ||||
| nsis: | ||||
|   artifactName: ${name}-${version}-setup.${ext} | ||||
|   shortcutName: ${productName} | ||||
|   uninstallDisplayName: ${productName} | ||||
|   createDesktopShortcut: always | ||||
| mac: | ||||
|   darkModeSupport: true | ||||
|   entitlementsInherit: build/entitlements.mac.plist | ||||
|   extendInfo: | ||||
|     - CFBundleName: MatrixTerminal | ||||
|   | ||||
| @@ -3,7 +3,8 @@ | ||||
|   "version": "1.0.0", | ||||
|   "description": "An Electron application with React and TypeScript", | ||||
|   "main": "./out/main/index.js", | ||||
|   "author": "example.com", | ||||
|   "license": "AGPL-3.0-only", | ||||
|   "author": "Solsynth LLC", | ||||
|   "homepage": "https://electron-vite.org", | ||||
|   "scripts": { | ||||
|     "format": "prettier --write .", | ||||
|   | ||||
| @@ -1,5 +1,5 @@ | ||||
| import { CssBaseline, ThemeProvider, createTheme } from '@mui/material' | ||||
| import { BrowserRouter, Route, Routes } from 'react-router' | ||||
| import { HashRouter, Route, Routes } from 'react-router' | ||||
| import { MaAppBar } from '@renderer/components/MaAppBar' | ||||
| import Landing from '@renderer/pages/Landing' | ||||
|  | ||||
| @@ -36,7 +36,7 @@ function App(): JSX.Element { | ||||
|  | ||||
|   return ( | ||||
|     <ThemeProvider theme={appTheme}> | ||||
|       <BrowserRouter> | ||||
|       <HashRouter> | ||||
|         <CssBaseline /> | ||||
|  | ||||
|         <MaAppBar /> | ||||
| @@ -48,7 +48,7 @@ function App(): JSX.Element { | ||||
|           <Route path="/products/:id" element={<ProductDetails />} /> | ||||
|           <Route path="/library/:id" element={<LibraryDetails />} /> | ||||
|         </Routes> | ||||
|       </BrowserRouter> | ||||
|       </HashRouter> | ||||
|     </ThemeProvider> | ||||
|   ) | ||||
| } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user