We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6a4cc1a commit e06b3e3Copy full SHA for e06b3e3
packages/angular-cli/models/webpack-config.ts
@@ -4,13 +4,14 @@ import {
4
} from './webpack-build-typescript';
5
const webpackMerge = require('webpack-merge');
6
import { CliConfig } from './config';
7
+import { getWebpackCommonConfig } from './webpack-build-common';
8
+import { getWebpackDevConfigPartial } from './webpack-build-development';
9
+import { getWebpackProdConfigPartial } from './webpack-build-production';
10
import {
- getWebpackCommonConfig,
- getWebpackDevConfigPartial,
- getWebpackProdConfigPartial,
11
getWebpackMobileConfigPartial,
12
getWebpackMobileProdConfigPartial
13
-} from './';
+} from './webpack-build-mobile';
14
+
15
16
export class NgCliWebpackConfig {
17
// TODO: When webpack2 types are finished lets replace all these any types
0 commit comments