When I execute the app and load views using
@useview('resources/panels/data-table-panel.html')
, everything works fine. However, running a component test results in failure due to a 404 error caused by the html file not being found.
After changing the path to
@useview('src/resources/panels/data-table-panel.html')
, the component can be staged successfully. But when the app is later started with gulp, it leads to a 404 error.
I'm looking for a workaround to this problem. Any ideas? Thanks.