TT#23357 Build: Fix issue with production build watcher

Change-Id: I8213cbd61b544642056fbecf1fc16fa33e2086ac
changes/89/16089/1
Hans-Peter Herzog 8 years ago
parent f01543c323
commit dd0319eeb1

@ -32,6 +32,16 @@ function finalize () {
}
webpackConfig.watch = (process.env['CSC_WATCH'])? true : false;
webpackConfig.watchOptions = {
ignored: [
'build',
'config',
'debian',
'dist',
'node_modules',
'templates'
]
}
webpack(webpackConfig, function (err, stats) {
if (err) throw err

@ -78,12 +78,32 @@
}
</script>
<style>
<style lang="stylus">
@import '../../src/themes/app.variables.styl';
#csc-login {
padding-top: 15%;
padding-top: 12%;
}
#csc-login .q-card-container {
#csc-login .q-card-title {
font-size: 22px;
color: $primary;
}
#csc-login .q-card-primary {
padding:30px;
padding-bottom: 0;
}
#csc-login .q-field:first-child {
margin-top:0;
}
#csc-login .q-card-main {
padding:30px;
}
#csc-login .q-card-actions {
padding:15px;
padding-top: 0;
}
</style>

@ -1,6 +1,6 @@
{
"title": "Sipwise Customer Portal",
"login_title": "Customer Self Care Portal",
"title": "Customer Self-Care Portal",
"login_title": "Customer Self-Care Portal",
"login_button": "Sign In",
"login_error": "Wrong username or password",
"username": "Username",

@ -3,6 +3,7 @@
import _ from 'lodash';
import { login, getCapabilities, getUserData} from '../api/user';
export default {
namespaced: true,
state: {

Loading…
Cancel
Save