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