Odoo directly serves all static files in running modules. This may not be ideal when it comes to performances. And static files should generally be served by a static HTTP server.
Odoo static files live in each module's static/ folder, so static files can be served by intercepting all requests to /MODULE/static/FILE, and looking up the right module (and file) in the various add-ons paths.
Note- All static files should generally be served by a static HTTP server.
0 Comment(s)