我有一个React项目,其中根目录有一个app
目录。在app
目录中,有一个containers
和一个components
目录。如何更改以下内容,以便webpack实际上在我的入口点所在的目录中查找模块。
const path = require('path') const HtmlWebpackPlugin = require('html-webpack-plugin'); const PATHS = { app: path.join(__dirname, 'app'), build: path.join(__dirname, 'build'), }; module.exports = { // where to start bundling entry: [ './app/app.js', ], // where to output output: { // output to same dir path: PATHS.build, filename: 'timbundle.js', },
答案 0 :(得分:1)
resolve: { modules: ['app', 'node_modules'], extensions: ['.js'] },
似乎有用。