We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ca4bb55 commit 9a80634Copy full SHA for 9a80634
templates/app/_package.json
@@ -214,6 +214,7 @@
214
"npm": "^3.9.5"
215
},
216
"scripts": {
217
+ "postinstall": "gulp copy:fonts:dev",
218
"lint": "npm run lint:client && npm run lint:server",
219
"lint:client": "eslint ./client/**/*.<%= scriptExt %> -c ./client/.eslintrc --ignore-pattern *.spec.<%= scriptExt %>",
220
"lint:server": "eslint ./server/**/*.js -c ./server/.eslintrc --ignore-pattern *.spec.js --ignore-pattern *.integration.js",
templates/app/webpack.make.js
@@ -388,7 +388,9 @@ module.exports = function makeWebpackConfig(options) {
388
colors: true,
389
chunks: false,
390
391
- historyApiFallback: true,
+ historyApiFallback: {
392
+ index: 'app.html'
393
+ },
394
};
395
396
config.node = {
0 commit comments