postcss / postcss-url

PostCSS plugin to rebase url(), inline or copy asset.
MIT License
376 stars 59 forks source link

Seems to copy files outside of basepath #177

Open bkno opened 1 year ago

bkno commented 1 year ago

I'm seeing a strange result with the below config:

require('postcss-url')({
    url: 'copy',
    basePath: path.resolve('node_modules'),
    assetsPath: 'assets/images'
    useHash: true
}),

Upon debug, bathPath is evaluated (as expected) as project_root/node_modules.

Images are not being copied from project_root/node_modules/some_lib/an_image.gif as I want however it is only copying images referenced in CSS from project_root/css into project_root/dist/assets/images.

I.e. the basePath seems to do the opposite of what it should be doing. Can anyone please explain why it is doing this?

ppodgorsek commented 4 months ago

The postcss-url plugin is meant to process URLs within CSS files. The base path indicates where those URLs should be resolved from. As such, it'll only process the resources referenced in CSS files.

If you would like to copy all images from a specific folder regardless of their use in CSS, I'd suggest looking at other plugins such as:

If the issue is that the wrong resources are copied, this could be due to the use of relative URLs, in which case the plugin seems to ignore the base path. For example,