alfresco-ng2-components/e2e/lite-server-proxy.js
Eugenio Romano 7fb42d79c0
Test improve 2 (#6167)
* more debug log

* fix

* next chrome

* fix favorite

* fix

* Fix spelling

* fix

Co-authored-by: Adina Parpalita <adina.parpalita@ness.com>
2020-09-28 00:05:07 +01:00

19 lines
442 B
JavaScript

let fallback = require('connect-history-api-fallback');
module.exports = {
injectChanges: false, // workaround for Angular 2 styleUrls loading
files: ['./**/*.{html,htm,css,js}'],
watchOptions: {
ignoreInitial: true,
ignored: '*'
},
ghostMode : false,
'port': 4200,
open: false,
server: {
middleware: {
1: fallback({index: '/index.html', verbose: true})
}
}
};