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
{{ message }}
This repository has been archived by the owner on Dec 13, 2023. It is now read-only.
Reproduce
Include a file, for example with url() in SCSS, that will be added to the assets of builds (could also be a problem of assets outside CSS). Both in development mode and productions builds assets have the wrong path resulting in 404.
Example from a background-image:
Development: GET https://typo3-vite-demo.ddev.site/packages/typo3_vite_demo/Resources/Private/Images/bg.svg 404
Production: GET https://typo3-vite-demo.ddev.site/assets/bg-17e50649.svg 404
Possible solutions
use relative paths from source file
complete extension path, e.g. typo3conf/ext/typo3_vite_demo/Resources/Private/Images/bg.svg
The text was updated successfully, but these errors were encountered:
Reproduce
Include a file, for example with
url()
in SCSS, that will be added to the assets of builds (could also be a problem of assets outside CSS). Both in development mode and productions builds assets have the wrong path resulting in 404.Example from a background-image:
GET https://typo3-vite-demo.ddev.site/packages/typo3_vite_demo/Resources/Private/Images/bg.svg 404
GET https://typo3-vite-demo.ddev.site/assets/bg-17e50649.svg 404
Possible solutions
typo3conf/ext/typo3_vite_demo/Resources/Private/Images/bg.svg
The text was updated successfully, but these errors were encountered: