Skip to content

Commit 1bd06a7

Browse files
committed
refactor(gulp): minor changes
1 parent c7ed8ed commit 1bd06a7

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

gulpfile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ function browser_reload(cb) {
112112
browser_sync.init({
113113
server: "build",
114114
host: 'frontroot.com',
115-
port: 80
115+
port: 8080
116116
});
117117

118118
watch('build/*.html').on('change', browser_sync.reload);

webpack.config.js

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,13 @@ module.exports = {
1515
options: {
1616
transpileOnly: true
1717
}
18+
},
19+
{
20+
test: /\.css$/,
21+
use: [
22+
'vue-style-loader',
23+
'css-loader'
24+
]
1825
}
1926
]
2027
},

0 commit comments

Comments
 (0)