Webpack-dev-server错误:找不到模块,不明白为什么?

时间:2018-07-10 10:11:18

标签: javascript webpack webpack-dev-server

我有一个新项目并设置了webpack用作模块捆绑程序,但是当我使用 npm start 脚本启动webpack-dev-server时,出现了错误

Error can't find module : 
  at Function.Module._resolveFilename (internal/modules/cjs/loader.js:571:15)
    at Function.Module._load (internal/modules/cjs/loader.js:497:25)
    at Module.require (internal/modules/cjs/loader.js:626:17)
    at require (internal/modules/cjs/helpers.js:20:18)

尽管我把所有事情都写对了,但我不明白为什么会这样吗?谁能告诉我为什么会这样?

这是我的 package.json 文件

{
  "name": "simple-webpack-project",
  "version": "1.0.0",
  "description": "",
  "main": "index.js",
  "scripts": {
    "start": "webpack-dev-server --config ./webapck.common.js"
  },
  "keywords": [],
  "author": "",
  "license": "ISC",
  "devDependencies": {
    "css-loader": "^1.0.0",
    "html-webpack-plugin": "^3.2.0",
    "mini-css-extract-plugin": "^0.4.1",
    "style-loader": "^0.21.0",
    "webpack": "^4.15.1",
    "webpack-cli": "^3.0.8",
    "webpack-dev-server": "^3.1.4"
  }
}

这是我的 webpack.common.js

const path = require('path');
const HtmlWebpackPlugin = require('html-webpack-plugin') ;
module.exports = {
    entry:{
        index:'./src/index.js',
        app:'./src/app.js'
    },
    output: {
        path: path.join(__dirname,'dist'),
        filename: "[name].js"
    },
    module: {
        rules: [
            {
                test :/\.css$/,
                use:['style-loader','css-loader']
            }
        ]
    },
    plugins: [
      new HtmlWebpackPlugin(
          {
              chunks:['app'],
              template:'./index.html'
          }
      )
    ],
    devServer: {
        port:4000
    }
}

1 个答案:

答案 0 :(得分:2)

我在IDE中尝试了项目设置,我想找到了解决问题的方法,我认为您在 package.json 文件

中写了错误的配置名称

您在名为 webpack.common.js

的磁盘中的文件

package.json中的文件名 webapck.common.js

因此可以解决问题

将package.json中的文件名更改为 webpack.common.js 而不是 webapck.common.js ,这将解决我认为的问题,请更改软件包。 json 开始脚本

"start": "webpack-dev-server --config ./webpack.common.js"