我想使用的WebPack但我得到一個錯誤錄入模塊:無法解析」 ./assets/app.js'
$ node_modules/.bin/webpack
Hash: d1aee5dc037997fae5a6
Version: webpack 3.4.1
Time: 31ms
ERROR in Entry module not found: Error: Can't resolve './assets/app.js' in 'D:\template\src'
這是使用的WebPack我的第一次。
這裏是我的腳本
const path = require('path');
const webpack = require('webpack');
module.exports = {
context: path.resolve(__dirname, './src'),
entry: {
app: './assets/app.js',
},
output: {
path: path.resolve(__dirname, './node_modules'),
filename: '[name].bundle.js',
},
};
我的文件夾結構
我覺得我得到的錯誤這裏 context: path.resolve(__dirname, './src'),
我只是不與我替換部分知道。
我已經看過這個https://webpack.github.io/docs/tutorials/getting-started
,並且已經嘗試有關如何使用的WebPack與谷歌搜索。任何解決方案?
"devDependencies": {
"buefy": "",
"bulma": "",
"vue": "^2.1.10",
"webpack": "^3.4.1"
},