chore: remove temporary vite config timestamp files and add pattern to .gitignore#1084
Open
sonusharma6-dsa wants to merge 1 commit into
Open
chore: remove temporary vite config timestamp files and add pattern to .gitignore#1084sonusharma6-dsa wants to merge 1 commit into
sonusharma6-dsa wants to merge 1 commit into
Conversation
…o .gitignore (closes souma9830#1034)
|
@sonusharma6-dsa is attempting to deploy a commit to the souma9830's projects Team on Vercel. A member of the Team first needs to authorize it. |
Contributor
There was a problem hiding this comment.
Pull request overview
Removes accidentally committed, generated Vite timestamp config artifacts from the frontend/ directory and updates ignore rules so they won’t be reintroduced in future builds.
Changes:
- Deleted three tracked
frontend/vite.config.js.timestamp-*.mjsgenerated artifact files. - Updated
frontend/.gitignoreto ignore Vite timestamp config artifacts going forward.
Reviewed changes
Copilot reviewed 4 out of 4 changed files in this pull request and generated 2 comments.
| File | Description |
|---|---|
| frontend/vite.config.js.timestamp-1780321879038-f93cbd766453d.mjs | Removed generated Vite timestamp config artifact from version control. |
| frontend/vite.config.js.timestamp-1779764902952-52da4ea2e799f.mjs | Removed generated Vite timestamp config artifact from version control. |
| frontend/vite.config.js.timestamp-1779688548429-703d9cfa5f822.mjs | Removed generated Vite timestamp config artifact from version control. |
| frontend/.gitignore | Added ignore pattern to prevent generated Vite timestamp config artifacts from being tracked again. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| yarn-debug.log* | ||
| yarn-error.log* | ||
| .env No newline at end of file | ||
| .env |
Comment on lines
+26
to
+27
| # vite config timestamps | ||
| vite.config.js.timestamp-* No newline at end of file |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Closes #1034. Removes the stray vite.config.js.timestamp-*.mjs files from the tracking history and registers them in the frontend .gitignore so they are ignored in future builds.