Forum Discussion
Error: GET https://localhost:8080/assets/status 404 (Not Found)
- Anonymous4 years ago
Hi Anonymous,
AFAIK, 404 error means these requests have referenced the wrong path of link/resource. According to your description and error messages, I think it means the project can't find out the specified resource which hosts in the assets folder.
If you want to invoke the external resource, you can take a look at the following link about similar requirements:
Solved: Including External Assets in Custom Visual (/Asset... - Microsoft Power BI Community
Regards,
Xiaoxin Sheng
I change the line
publicPath: 'assets',in
publicPath: '/assets/',
and now I have the error GET https://localhost:8080/assets/visual.js 404 (Not Found),
So I think the probleme come from where I put the output, or something is not create with my webpack
- Anonymous4 years agoNot applicable
Hi Anonymous,
AFAIK, 404 error means these requests have referenced the wrong path of link/resource. According to your description and error messages, I think it means the project can't find out the specified resource which hosts in the assets folder.
If you want to invoke the external resource, you can take a look at the following link about similar requirements:
Solved: Including External Assets in Custom Visual (/Asset... - Microsoft Power BI Community
Regards,
Xiaoxin Sheng
- Anonymous4 years agoNot applicable
Thanks I said to my webpack to put everything I create in a folder assets and now it works (I don't have the visuals but it connect it's an advancement XD) Now i need to search why it don't works... Thanks !
- Anonymous4 years agoNot applicable
For more information I change the line
path: path.join(__dirname, "/.tmp","drop"),to
path: path.join(__dirname, "/.tmp","drop", "assets"),