标签:style body tle index web ack npm ESS imp
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‘] } ] }
标签:style body tle index web ack npm ESS imp
原文地址:https://www.cnblogs.com/lemonzwt/p/11756178.html