Clean up dirty build: gitignore IDE/temp files, consolidate vite configs #1
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Problem
The app currently builds as
v1.3.225-dirtybecause several untracked and modified files are present in the working tree. This prevents clean version strings in deployed builds.Files causing
-dirtyandroid/.project.gitignore(Android Studio IDE file)android/.settings/.gitignore(Android Studio IDE settings dir)dist-solar/.gitignore(build output)vite.config.ts.backupvite.config.inline.tsvite.config.main.tsvite.config.solar.tsContext
vite-plugin-singlefilewas added topackage.jsonto address the Forgejo Pages MIME-type issue where.js/.cssfiles are served astext/plain. If the vite config split is the intended approach, commit all three configs and remove the backup. If not, revert to singlevite.config.ts.Acceptance
git statusshows no untracked files or modifications after cleanupnpm run buildproduces version string without-dirty.gitignorecoversandroid/.project,android/.settings/,dist-solar/.backupfiles in the repoAssigned to
Kimi