This commit is contained in:
pplokijuhyg 2019-12-02 14:28:24 +08:00
parent b7315af8b6
commit 58da57890a

View File

@ -93,4 +93,13 @@ module.exports = {
```
## 入口起点
> 在webpack中有多种
> 在webpack中有多种定义entry的方法
### 单个入口起点
config
```
const config = {
entry: './path/to/my/entry/file.js'
};
module.exports = config;
```