mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
* more debug log * fix * next chrome * fix favorite * fix * Fix spelling * fix Co-authored-by: Adina Parpalita <adina.parpalita@ness.com>
19 lines
442 B
JavaScript
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})
|
|
}
|
|
}
|
|
};
|