-
-
Notifications
You must be signed in to change notification settings - Fork 59
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Images don't show in dev mode with Laravel backend #396
Comments
Can you check if #400 would fix the issue you're facing? |
No unfortunately it does not fix the issue :( Also I think that PR is for a different purpose as they stated:
They talking about the build result. This issue I'm having happens in dev mode. |
Same here. Getting 404 Errors on all images when running yarn dev in laravel vite environment Error: Failed to load resource: the server responded with a status of 404 (Not Found) html code that corresponds to error <source type="image/avif" srcset="/@imagetools/23ae5086f5b8fa6391e57bb0800aabc686bd2b37 850w"> EnvironmentConsole Output: (just for reference and version numbers) VITE v4.0.1 ready in 503 ms
➜ Local: http://localhost:5173/
➜ Network: use --host to expose
➜ press h to show help
LARAVEL v9.43.0 plugin v0.7.1 package.json "laravel-vite-plugin": "^0.7.1",
"vite": "^4.0.1",
"vite-imagetools": "^4.0.11",
"vue": "^3.2.45" vite.config.js export default defineConfig({
build: {
chunkSizeWarningLimit: 600,
},
plugins: [
laravel({
input: ['resources/css/frontend.css', 'resources/js/frontend.ts'],
refresh: true,
buildDirectory: '/build/frontend',
config: 'frontend',
}),
vue({
template: {
transformAssetUrls: {
base: null,
includeAbsolute: false,
},
},
}),
imagetools({
/* options */
}),
],
resolve: {
alias: {
'@': path.resolve(__dirname, './resources/js'),
},
},
server: {
strictPort: true,
hmr: {
host: 'localhost',
},
}, |
@HassanZahirnia, if you get a chance, could you double-check that the changes from the above-referenced pull request also fixed it for you with Laravel, please? |
nope, unfortunately it does not work. I'm using this package as a plugin in a Laravel 9 and Nuxt 3 environment, in both environments @imagetools is not resolved as url in dev but build works as expected. |
@DeedleFake No the issue is not fixed. Honestly not sure why you marked this issue as "fixed" before checking with a Laravel backend first 😅 If possible please re-open this issue @benmccann |
Hey I've found a similar Vite plugin that uses Sharp underhood, and it's asset paths are correct in dev mode. I thought maybe someone could have a look at it and figure out what they did that would fix this issue, here is the source file: Although I should mention their plugin does not work in production. So be careful not to grab any production logic from their code. |
To be honest, I'm not sure why I did either. Just wasn't thinking. Sorry. |
@DeedleFake did you test #489 with any app? I didn't think about this before, but I'm pretty sure https://github.com/JonasKruckenberg/imagetools/pull/489/files#diff-8d1a92b43a2575de2cdad4edc1af1e9586a5f1ee84ec2dad9b7af5ebc2322b13R123 is wrong because Vite's base middleware strips out the base path before passing it to any middlewares. I'm wondering if #489 helps at all or should be reverted entirely? |
Yes, I did. I tested it with the Rails app that I was having the problems I posted above in this issue and it fixed them. |
The issue with the Rails backend was that the Vite dev server never even saw the requests because they didn't start with the base path. The way the Rails integration works is something like this:
So without prefixing the string paths returned by the plugin when it's used in an |
I've never worked with Laravel before, but I set up a simple project and it looks like the problem there is different, but related. In Laravel's case, assets are not routed through the main dev server but are instead sent directly to Vite. For example, in my case the Laravel dev server is running on port 8000, while the Vite dev server is running on port 5173. However, there's a big discrepancy between normal Vite image imports and ones routed through import test from './test.png'
// test is http://[::1]:5173/resources/js/test.png
import test from './test.png?width=50'
// test is @imagetools/0078fa8134eed9d2fc44c1cd1ab4f62b63fe1041 I would speculate that there's another config option for Vite that Laravel is automatically setting to redirect assets to the dev server but that is being missed by |
@DeedleFake Thanks for looking into Laravel 🙌 I suggest you to look into the repo I linked earlier. That plugin has a working path setup for dev server. I personally have no experience with Vite plugins so I couldn't figure it out myself. |
I've been doing so, as well as looking at other plugins. The documentation around this particular situation, despite how common you'd think it is, isn't fantastic, unfortunately.
Neither do I. I'd never looked into how they worked at all before I started working on fixing this. In fact, I'd never used Vite before a week ago or so. |
Okay, I think your change to implement base path support was correct and necessary. I can confirm that images in SvelteKit were broken on the prior release (4.0.13) when using a base path. The way the imagetools middleware is being called it will be invoked before Vite's base middleware strips out the the base path. If on the otherhand we were returning a function that returned the middleware then we'd no longer want to strip out the base path because Vite would do it: https://vitejs.dev/guide/api-plugin.html#configureserver |
Are you using |
That's weird, it worked for me when I tried it.
Yeah I'm using the latest. But I have not modified base config so that PR fix does not affect me. Not to mention I believe majority of Laravel users don't change the base config since the default is good enough. Honestly I think until one of maintainers sit down and try this library with a Laravel backend, there is no way to debug and fix this issue properly. |
Could you provide a repository that reproduces the issue? |
@benmccann Here is a reproduction repo: https://github.com/HassanZahirnia/laravel-imagetools-issue Just in case you're not familiar with Laravel projects here are the instructions:
|
After updating to vite-imagetools v4.0.16 I can confirm the images are getting resolved in Dev mode \o/, in a Nuxt 3 environment. 👍 (Haven't checked Laravel yet) <img src="/_nuxt/@imagetools/ac439a9cdb37db9a912abbf3f5fd377f36ecdab6"> |
Glad the tool is starting working with other frameworks such as Nuxt and Rails, but unfortunately the Laravel support is not there yet. @hopkins385 I checked with |
Agree, I've checked it with Laravel and still not working. package.json (just for reference) "vite": "^4.0.4",
"laravel-vite-plugin": "^0.7.3",
"vite-imagetools": "^4.0.16",
"imagetools-core": "^3.3.0",
|
@driesvints @timacdonald any chance you'd be interested in taking a look at this one? It seems to occur exclusively with |
Hey folks, I have a working solution for this for the Laravel plugin. For the Laravel folks in the thread, we will can shift out of here and into this issue: laravel/vite-plugin#194 tl;dr; We need to expose a way for developers to say "Please prefix - <img src="/@imagetools/f0b2f404b13f052c604e632f2fb60381bf61a520">
+ <img src="http://[::1]:5173/@imagetools/f0b2f404b13f052c604e632f2fb60381bf61a520"> PR will be up shortly. |
Thanks for looking into this Tim ^_^ I've already given my impressions on the mentioned PR. So for Laravel folks I can easily conclude the issue is resolved as Tim has given 2 different ways to solve this. Y'all have a great time and happy coding! 🌸😊 |
If you try this plugin with a Laravel + Vite + Vue stack, all the images will throw a
404 (Not Found)
error and not show on the page.This is because the tool is returning relative paths and normally an asset URL imported through Vite would have an absolute URL, and in the context of a backend such as Laravel the lack of absolute URL breaks the images.
Assuming you're running in
dev
modeWithout
imagetools
loader ( normal image importing ):With
imagetools
loader:Note that
build
works fine. It's only adev
mode issue.The text was updated successfully, but these errors were encountered: