How webpack4 does not package specified files, such as bootstrap.min.css

for example, I want to use bootstrap.min.css, but do not want to package it but call it directly (packing error, no solution can be found)

Mar.16,2021

put the file path to be excluded into exclude:

exclude: [
  resolve('node_modules/XXXXX/bootstrap.min.css')
]

if you already have content in exclude, you can refer to the documentation and write it in the following form:

exclude: {
  test: [/*  */],
  exclude: [
    resolve('node_modules/XXXXX/bootstrap.min.css')
  ]
}
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-1b32edb-2be45.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-1b32edb-2be45.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?