将webpack输入文件路径合并到输出文件路径中

时间:2018-07-12 09:31:33

标签: webpack

我的目录结构如下:

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]占位符,但我想我也需要一个找不到的路径占位符。

0 个答案:

没有答案