我的目录结构如下:
js
- account
- login.js
- register.js
- product
- index.js
我要做的是为每个文件制作不同的Webpack,但使用相同的文件夹结构:
dist
- account
- login.bundle.js
- register.bundle.js
- product
- index.bundle.js
这是我想像的webpack.config.js
文件的样子:
module.exports = {
entry: {
account-login: "./js/account/login.js",
account-register: "./js/account/register.js",
product-index: "./js/product/index.js"
},
output: {
path: "./dist",
filename: "[???]/[???].bundle.js"
}
};
这可以解决吗?我知道有一个[name]
占位符,但我想我也需要一个找不到的路径占位符。