Invalid route module file: /....../app/routes/.DS_Store
See original GitHub issueAny time I open my app in the file system, Apple does this stupid thing and creates a .DS_Store file. Could we just ignore .DS_Store files in the routes?
Issue Analytics
- State:
- Created 2 years ago
- Reactions:6
- Comments:22 (10 by maintainers)
Top Results From Across the Web
ITMS-90118: Invalid routing app se… | Apple Developer Forums
ITMS-90118: Invalid routing app setting: To upload a routing app coverage file on App Store Connect, you must define the app binary as...
Read more >javascript - Exclude files (i.e. .DS_Store) with webpack and ...
I'm not quite sure what DS_STORE files are. But when you configure your loaders, provide an exclude for these files.
Read more >Angular2NotesForProfessionals - tanhan.stqng - Page 1 - 232 | Flip ...
122 Chapter 31: Bootstrap Empty module in angular 2 . ... login/login.component'; we need to set routes for login in app.routes.ts const appRoutes:...
Read more >powered by Falcon Sandbox - Viewing online file ... - Hybrid Analysis
Submit malware for free analysis with Falcon Sandbox and Hybrid Analysis technology. Hybrid Analysis develops and licenses analysis tools to fight malware.
Read more >New UI merge in progress · 8dd07c0ddd - aiforge - OpenI - 启智AI ...
Fatal(2, "Invalid auth file format: %v", err) ... Routes)(nil)). m.Action(r.Handle) ... DS_Store|README.md" -o modules/bin/conf.go -pkg="bin" conf/.
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found

Yes. Every file in the routes directory is considered a route. So you need to move CSS files outside the routes
I tried to remove the .DS_Store files manually from the
/routesdirectory, without success. This worked:find . -name ".DS_Store" -print -delete