(configName)
| 6 | const webpack = require('webpack'); |
| 7 | |
| 8 | async function getConfig(configName) { |
| 9 | const { getCommConfig } = await import( |
| 10 | '../../keyserver/dist/lib/utils/comm-config.js' |
| 11 | ); |
| 12 | return await getCommConfig(configName); |
| 13 | } |
| 14 | |
| 15 | const sharedPlugins = [ |
| 16 | new webpack.optimize.LimitChunkCountPlugin({ |
no test coverage detected