- 19
- 0
运行
npm start
报错
Error: Cannot find module 'webpack'
安装了
npm install --save-dev webpack
cnpm install webpack-dev-server -g
解决不了问题,怎么办?
最后副一条我的package.json
{
"name": "webpack",
"version": "1.0.0",
"description": "vue+webapck",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack-dev-server --inline"
},
"author": "",
"license": "ISC",
"devDependencies": {
"autoprefixer-loader": "^2.0.0",
"babel": "^6.3.13",
"babel-core": "^6.3.21",
"babel-loader": "^6.2.0",
"babel-plugin-transform-runtime": "^6.3.13",
"babel-preset-es2015": "^6.3.13",
"babel-runtime": "^5.8.34",
"css-loader": "^0.16.0",
"file-loader": "^0.8.5",
"html-loader": "^0.3.0",
"node-sass": "^3.4.2",
"sass-loader": "^3.2.0",
"style-loader": "^0.12.3",
"url-loader": "^0.5.6",
"vue-html-loader": "^1.2.0",
"vue-loader": "^7.2.0",
"webpack": "^1.15.0",
"webpack-dev-server": "^1.14.0"
},
"keywords": [
"vue",
"webpack"
]
} - 共 0 条
- 全部回答
-
我本无情 普通会员 1楼
This error message usually indicates that the module you are trying to import, webpack, is not installed in your project. Here are some steps you can take to resolve this issue:
- Check if webpack is installed: You can use the
npmcommand to check if webpack is installed in your project. Open a terminal window and run the following command:
npm ls webpackIf webpack is installed, it should return the path to the installed module.
- Install webpack: If webpack is not installed, you can install it using the following command:
npm install webpack- Verify that webpack is installed: After installing webpack, you can verify that it is installed by running the following command:
webpack --versionIf webpack is installed, it should return the version number.
If you have already tried these steps and are still getting the error message, it's possible that there is a configuration issue with your webpack configuration file. You can try opening the webpack configuration file in a text editor and making sure that all the required dependencies are installed and that the correct paths to the dependencies are specified.
- Check if webpack is installed: You can use the
- 扫一扫访问手机版
回答动态

- 神奇的四哥:发布了悬赏问题阿里云幻兽帕鲁服务器更新之后。服务器里面有部分玩家要重新创建角色是怎么回事啊?预计能赚取 0积分收益

- 神奇的四哥:发布了悬赏问题函数计算不同地域的是不能用内网吧?预计能赚取 0积分收益

- 神奇的四哥:发布了悬赏问题ARMS可以创建多个应用嘛?预计能赚取 0积分收益

- 神奇的四哥:发布了悬赏问题在ARMS如何申请加入公测呀?预计能赚取 0积分收益

- 神奇的四哥:发布了悬赏问题前端小程序接入这个arms具体是如何接入监控的,这个init方法在哪里进行添加?预计能赚取 0积分收益

- 神奇的四哥:发布了悬赏问题阿里云幻兽帕鲁服务器刚到期,是不是就不能再导出存档了呢?预计能赚取 0积分收益

- 神奇的四哥:发布了悬赏问题阿里云幻兽帕鲁服务器的游戏版本不兼容 尝试更新怎么解决?预计能赚取 0积分收益

- 神奇的四哥:发布了悬赏问题阿里云幻兽帕鲁服务器服务器升级以后 就链接不上了,怎么办?预计能赚取 0积分收益

- 神奇的四哥:发布了悬赏问题阿里云幻兽帕鲁服务器转移以后服务器进不去了,怎么解决?预计能赚取 0积分收益

- 神奇的四哥:发布了悬赏问题阿里云幻兽帕鲁服务器修改参数后游戏进入不了,是什么情况?预计能赚取 0积分收益
- 回到顶部
- 回到顶部

