Skip to content

Commit 9a80634

Browse files
committed
merge fixes
1 parent ca4bb55 commit 9a80634

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

Diff for: templates/app/_package.json

+1
Original file line numberDiff line numberDiff line change
@@ -214,6 +214,7 @@
214214
"npm": "^3.9.5"
215215
},
216216
"scripts": {
217+
"postinstall": "gulp copy:fonts:dev",
217218
"lint": "npm run lint:client && npm run lint:server",
218219
"lint:client": "eslint ./client/**/*.<%= scriptExt %> -c ./client/.eslintrc --ignore-pattern *.spec.<%= scriptExt %>",
219220
"lint:server": "eslint ./server/**/*.js -c ./server/.eslintrc --ignore-pattern *.spec.js --ignore-pattern *.integration.js",

Diff for: templates/app/webpack.make.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -388,7 +388,9 @@ module.exports = function makeWebpackConfig(options) {
388388
colors: true,
389389
chunks: false,
390390
},
391-
historyApiFallback: true,
391+
historyApiFallback: {
392+
index: 'app.html'
393+
},
392394
};
393395

394396
config.node = {

0 commit comments

Comments
 (0)