Skip to Content
Menu
You need to be registered to interact with the community.
This question has been flagged
1 Odgovori
3783 Prikazi

Hey can anyone please explain this change in odoo15 where we no longer need asset XML file and instead we use manifest to link our js and .scss files. How to identify between asset backend or frontend or common.

Some guidance would be nice

Avatar
Opusti
Best Answer

In the manifest.py you can specify if it is backend or frontend like below:

'assets': {
'web.assets_backend': [
'bus/static/src/**/*',
],
'web.assets_frontend': [
'bus/static/src/js/longpolling_bus.js',
'bus/static/src/js/crosstab_bus.js',
'bus/static/src/js/services/bus_service.js',
],
'web.qunit_suite_tests': [
'bus/static/tests/*.js',
],
},


Avatar
Opusti
Related Posts Odgovori Prikazi Aktivnost
2
mar. 22
5594
1
maj 23
1968
3
jun. 22
13390
0
feb. 22
2258
3
dec. 24
13413