Skip to content

Commit 0ee37f9

Browse files
committed
Merge branch 'master' of github.com:RafaPegorari/meanstack
2 parents 561accd + dd8ed1b commit 0ee37f9

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

gulpfile.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
*/
1010
var argv = require('minimist')(process.argv.slice(2)),
1111
gulp = require('gulp'),
12+
settings = require('./config'),
1213
plumber = require('gulp-plumber'),
1314
rename = require('gulp-rename'),
1415
autoprefixer = require('gulp-autoprefixer'),
@@ -202,7 +203,7 @@ gulp.task('bs-reload', function () {
202203
*/
203204
gulp.task('watch', ['default'], function () {
204205
browserSync.init({
205-
proxy: "localhost:8080"
206+
proxy: settings.server.hostname+":"+settings.server.port
206207
});
207208
gulp.watch("public/src/stylesheets/**/*.scss", ['styles']);
208209
gulp.watch("public/src/javascripts/**/*.js", ['scripts']);
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
$icon-font-path: "../fonts/";
1+
$icon-font-path: "../fonts/";

public/src/stylesheets/sass/main.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
12
@import "common/variables";
23

34
@import "../../../../bower_components/bootstrap-sass/assets/stylesheets/_bootstrap.scss";

0 commit comments

Comments
 (0)