8000 add support for publicPath option in webpack by Mischi · Pull Request #3136 · angular/angular-cli · GitHub
[go: up one dir, main page]

Skip to content

add support for publicPath option in webpack #3136

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 4 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Merge branch 'master' into feat-webpack-publicPath
# Conflicts:
#	packages/angular-cli/models/webpack-build-common.ts
  • Loading branch information
Mischi committed Nov 19, 2016
commit d0127720748b4c99d0eb18505aa7e75f380864b7
4 changes: 3 additions & 1 deletion packages/angular-cli/models/webpack-build-common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,9 @@ export function getWebpackCommonConfig(
output: {
path: path.resolve(projectRoot, appConfig.outDir),
publicPath: appConfig.publicPath,
filename: '[name].bundle.js'
filename: '[name].bundle.js',
sourceMapFilename: '[name].bundle.map',
chunkFilename: '[id].chunk.js'
},
module: {
rules: [
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.
0