webpack loads css files and its configuration
const path = require('path'); module.exports = { // In the configuration file, manually specify the entry file and export file mode:'development', // This attribute needs to be added in the webpack4.x version entry:'./src/main.js', // Entry file output:{ // Export file path:path.resolve(__dirname,'dist'), // Specify where the packaged files should be output (note: the path must be an absolute address) filename: 'bundle.js' //Specify the file name of the output file}, module:{ rules:[ {test:/\.css$/ , use:['style-loader' , 'css-loader']} ] } } Test indicates what type of file we want to process, and each item in use is the loader required to process that type of file. Note: The css-loader is used to let the main.js file load the css file, while the style-loader is used to add the module's exports as styles to the DOM. Some people may have questions here: according to this function, the file should be loaded first and then added to the DOM as a style, so the order in the array should not be like this. I am here to tell you clearly that your idea is not wrong, but webpack is very peculiar in that it loads the loader from the last element of the array, from right to left. After setting the dependency, downloading the loader and configuring it, we will find that the styles in the CSS file appear after running it. Summarize The above is the webpack loading css file and its configuration method introduced by the editor. I hope it will be helpful to everyone. If you have any questions, please leave me a message and the editor will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website! If you find this article helpful, please feel free to reprint it and please indicate the source. Thank you! |
<<: How to use Element in React project
>>: Pagination Examples and Good Practices
1. Introduction When the amount of data in the da...
Table of contents Separation effect Command line ...
1. I purchased a VPS and CentOS system, and found...
In the page, external files such as js, css, etc. ...
Table of contents Summarize <template> <...
This article uses an example to describe how to q...
Table of contents Preface 1.v-show 2.v-if 3. The ...
Table of contents Partitioning mechanism SELECT q...
1. Download related tools and images Download Lin...
Table of contents 1. What kind of backup is a dat...
This article describes how to install MySQL 5.7 f...
1. To optimize the query, try to avoid full table...
This error is often encountered by novices. This ...
1. Background When the Docker service is started,...
Like means "like" in Chinese, but when ...