Loading Images in Phaser and Node js

Im am trying to load images in phaser with node js and i always get the same error

:3000/assets/img/feet/idle/survivor-idle_0.png:1 Failed to load resource: the server responded with a status of 404 (Not Found)

if you know a way to get this to work please tell me. here is my code:

preload() {
        // Used for preloading assets into your scene
        
        //Idle feet image
        this.load.image('idleFeetFrame', '/assets/img/feet/idle/survivor-idle_0.png');
}