You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Serve the file from STATIC FILES storage. In this example, the file was placed in the client/public/apple-pay directory. This gets collected to staticfiles when the app is built and so the file can be retrieved from staticfiles_storage in the directory apple-pay/...
Sometimes we need to serve a static file from the root to verify domain ownership, e.g.
mydomain.com/.well-known/verification
.We should add an example of how to do this with the bootstrapper. Here's some sample code from another project:
Serve the file from STATIC FILES storage. In this example, the file was placed in the
client/public/apple-pay
directory. This gets collected to staticfiles when the app is built and so the file can be retrieved fromstaticfiles_storage
in the directoryapple-pay/...
The text was updated successfully, but these errors were encountered: