Webpack, why can't the path be displayed to the picture when the picture is packaged successfully?


css


webpackconfig

  module: {
        // preLoaders: [
        //     //  
        //     {test: /\.(js|jsx)$/, loader: "eslint-loader", exclude: /node_modules/}
        // ],
        loaders: [
            { test: /\.(js|jsx)$/, exclude: /node_modules/, loader: "babel" },
            { test: /\.less$/, exclude: /node_modules/, loader: "style!css!postcss!less" },
            { test: /\.css$/, exclude: /node_modules/, loader: "style!css!postcss" },
            { test:/\.(png|gif|jpg|jpeg|bmp)$/i, loader:"url-loader?limit=5000" },  // 5kb
            { test:/\.(png|woff|woff2|svg|ttf|eot)($|\?)/i, loader:"url-loader?limit=5000"} // 5k
        ]
    },

  1. can I open it in a browser by clicking on the picture link?
  2. can be opened to see if the background image is covered;
  3. if not, it means that no static resources have been loaded successfully. Check webpack
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-1b31344-2b5c9.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-1b31344-2b5c9.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?