This can be a silly question but I have had some issues with it. I am trying to implement jwplayer with meteor. Jwplayer will try to get a file based off the url you suggest. So I tried to place a file in localhost:3000/test.mp3. When I tried to hit that url I get just the default site. This would work if I used tomcat. Is there something I can do to get the files relative to meteor directory?
Thanks for your help.
In the
/publicdirectory, per the docs:Meteor hasn’t yet implemented server side routing and all directories are ultimately flattened. So for the time being, you can access your file at
http://localhost:3000/test.mp3, but that may change in the future.