(extra?: InlineConfig)
| 189 | } |
| 190 | |
| 191 | const getInlineConf = (extra?: InlineConfig): InlineConfig => ({ |
| 192 | root: appDir, |
| 193 | mode: "development", |
| 194 | configFile: false, |
| 195 | base: basePath, |
| 196 | ...extra, |
| 197 | resolve: { |
| 198 | conditions: ["development"], |
| 199 | mainFields: [], |
| 200 | }, |
| 201 | }); |
| 202 | |
| 203 | await build( |
| 204 | getInlineConf({ |