()
| 125 | } |
| 126 | |
| 127 | isNeutralPlatform() { |
| 128 | return ( |
| 129 | !this.compilation.compiler.platform.web && |
| 130 | !this.compilation.compiler.platform.node |
| 131 | ); |
| 132 | } |
| 133 | |
| 134 | /** |
| 135 | * Whether the bundle targets node and web at once (universal `["node", "web"]` + `output.module`), like `isUniversalTarget` in `WebpackOptionsApply`. |