docs(webpack): update for v4 (#3530)

This commit is contained in:
Jesús Rodríguez 2017-04-12 14:57:01 +02:00 committed by GitHub
parent 1ec0d7621d
commit 0bf521271b
2 changed files with 6 additions and 6 deletions

View File

@ -62,7 +62,7 @@ module.exports = {
// Workaround for angular/angular#11580 // Workaround for angular/angular#11580
new webpack.ContextReplacementPlugin( new webpack.ContextReplacementPlugin(
// The (\\|\/) piece accounts for path separators in *nix and Windows // The (\\|\/) piece accounts for path separators in *nix and Windows
/angular(\\|\/)core(\\|\/)(esm(\\|\/)src|src)(\\|\/)linker/, /angular(\\|\/)core(\\|\/)@angular/,
helpers.root('./src'), // location of your src helpers.root('./src'), // location of your src
{} // a map of your routes {} // a map of your routes
), ),

View File

@ -9,7 +9,7 @@ module.exports = webpackMerge(commonConfig, {
output: { output: {
path: helpers.root('dist'), path: helpers.root('dist'),
publicPath: 'http://localhost:8080/', publicPath: '/',
filename: '[name].js', filename: '[name].js',
chunkFilename: '[id].chunk.js' chunkFilename: '[id].chunk.js'
}, },