Всем привет! Не могу понять почему не работает webpack-dev-server. Мне нужно, чтобы он отслеживал папку src, в которой находятся less файлы и index.html Подскажите пожалуйста, что не так с файлом webpack.config и package.json
webpack.config
const path = require("path");
// const HtmlWebpackPlugin = require("html-webpack-plugin");
const ExtractTextPlugin = require("extract-text-webpack-plugin");
// var smartgrid = require('smart-grid');
module.exports = {
entry: "./src/index.js", // ВСЕ ТО ЧТО БЫЛО ДО ОБРАБОТКИ
output: {
path: path.resolve(__dirname, "dist"),
filename: "main.js", // ПОСЛЕ ОБРАБОТКИ
publicPath: 'dist/'
},
module: {
rules: [
{
test: /\.js$/,
loader: 'babel-loader'
//exclude: '/node_modules'
},
{
test: /\.less$/,
use: ExtractTextPlugin.extract({
fallback: "style-loader",
use: ["css-loader", "less-loader"],
}),
},
],
},
devServer: {
// overlay: true
},
plugins: [
// new HtmlWebpackPlugin({
// template: "index.html",
// filename: "index.html",
// inject: true,
// }),
new ExtractTextPlugin("style.css"),
],
};
package.json
{
"name": "template",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "webpack-dev-server --mode development --open",
"build": "webpack --mode production"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.10.1",
"@babel/preset-env": "^7.10.1",
"babel-loader": "^8.1.0",
"css-loader": "^3.5.3",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"html-webpack-plugin": "^4.3.0",
"html-webpack-pug-plugin": "^2.0.0",
"less-loader": "^6.1.0",
"mini-css-extract-plugin": "^0.9.0",
"smart-grid": "^2.1.2",
"style-loader": "^1.2.1",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0"
}
}