How to deal with url in css when webpack is packaged?

there is a background image in css, which is introduced as follows

clipboard.png
uses an alias as the path, but it still exists in the form of an alias after packaging and is not converted, but if it is packaged in this format, the image cannot be obtained normally.
in addition, this path will be parsed normally when I try it in the development environment
Why not parse when I package it?

Apr.10,2022

check whether the published css loader is consistent


whether the path setting of the image is correct or not, the address after the splicing of name and publicPath must be right, which is modified according to the actual design of the project.

    test: /\.(png|jpe?g|gif|svg)(\?.*)?$/,
    loader: 'url-loader',
    options: {
      limit: 10000,
      name: path.posix.join('static', '[name].[hash:7].[ext]'),
      publicPath: '../../'
     }
    
MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b30e10-2bd64.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b30e10-2bd64.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?