webpack4 处理less文件

Posted 不骄不傲

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了webpack4 处理less文件相关的知识,希望对你有一定的参考价值。

1.安装依赖

npm i style-loader css-loader less-loader less -D

2.新建html页面

<html>
<head>
    <meta charset="UTF-8">
    <title>index</title>
</head>
<body>
</body>
</html>

3.新建index.less文件

html{
    background-color: blue;
}

4.在main.js中引用index.less

import ‘./css/index.less‘

5.配置webpack.config.js文件

module: {
        rules: [
            {
                test:/.less$/,
                use:[‘style-loader‘,‘css-loader‘,‘less-loader‘]
            }
        ]
    }

 

以上是关于webpack4 处理less文件的主要内容,如果未能解决你的问题,请参考以下文章

webpack4.0样式处理

如何预加载 webpack4+babel 捆绑的 CSS @font-face 字体?

webpack4的配置你都掌握了么?

webpack4常用片段

webpack4 面试题

Webpack4 自定义 Loader