webpack-chain: модуль не найден
Я попытался настроить конфигурацию с помощью
webpack-chain
сегодня, потому что я интегрирую
Vue
в мой проект сейчас.
webpack.config.js
выглядит следующим образом
const path = require('path');
const Config = require('webpack-chain');
const config = new Config();
config
// Interact with entry points
.entry('index')
.add('./appName/static/appName/app.js')
.end()
// Modify output settings
.output
.path(path.resolve(__dirname, 'appName/static/dist/'))
.filename('[name].[contenthash].js')
.chunkFilename('[name].[chunkhash].js')
.publicPath('/static/dist')
Когда я бегу
webpack --mode=development
, Я получил следующую ошибку:
asset main.js 644 bytes [compared for emit] (name: main)
ERROR in main
Module not found: Error: Can't resolve './src' in '/home/kumom/shared/my_project'
webpack 5.11.1 compiled with 1 error in 75 ms