commit working index.html

This commit is contained in:
Matthew Raymer
2025-02-12 06:46:16 +00:00
parent c9f78ae09b
commit 3a5f202da3
6 changed files with 260 additions and 50 deletions

View File

@@ -112,6 +112,7 @@
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-vue": "^9.32.0",
"fs-extra": "^11.3.0",
"npm-check-updates": "^17.1.13",
"postcss": "^8.4.38",
"prettier": "^3.2.5",
@@ -121,7 +122,7 @@
"vite": "^5.2.0",
"vite-plugin-pwa": "^0.19.8"
},
"main": "main.js",
"main": "./dist-electron/main.js",
"build": {
"appId": "app.timesafari.app",
"productName": "TimeSafari",
@@ -129,14 +130,18 @@
"output": "dist-electron-build"
},
"files": [
"dist-electron/**/*"
],
"extraResources": [
{
"from": "dist-electron",
"to": ".",
"filter": ["**/*"]
"from": "dist-electron/www",
"to": "www"
}
],
"linux": {
"target": ["AppImage"],
"target": [
"AppImage"
],
"category": "Utility",
"icon": "build/icons"
},