欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

ERROR in Entry module not found: Error: Can‘t resolve ‘./src/index.js‘ in‘xxx.js‘

程序员文章站 2022-06-22 20:10:59
webpack初学webpack打包的时候遇到这样的问题配置'use strict';const path = require('path');module.exports = { entry: './src/index.js', output: { path: path.resolve(__dirname, 'dist'), filename: 'bundle.js' }, mode: 'production'};关键是...

webpack

初学webpack打包的时候遇到这样的问题
ERROR in Entry module not found: Error: Can‘t resolve ‘./src/index.js‘ in‘xxx.js‘
配置

'use strict';

const path = require('path');

module.exports = {
    entry: './src/index.js',
    output: {
        path: path.resolve(__dirname, 'dist'),
        filename: 'bundle.js'
    },
    mode: 'production'
};

关键是执行文件的目录不对…
ERROR in Entry module not found: Error: Can‘t resolve ‘./src/index.js‘ in‘xxx.js‘
主要是因为webpack.config.js这个文件entry的相对路径问题,进入了node_modules/.bin 运行webpack相对路径找不到了,其实报错信息也说的很清楚。
Can’t resolve ‘./src/index.js’ in ‘E:webpack\webpack-demo\node_modules.bin’
意思就是从node_modules.bin 运行不了index.js,因为没有…
ERROR in Entry module not found: Error: Can‘t resolve ‘./src/index.js‘ in‘xxx.js‘

本文地址:https://blog.csdn.net/ZHgogogoha/article/details/107876107

相关标签: 前端 webpack