Log webpack reducido
This commit is contained in:
parent
9a0e5e1646
commit
de84b3bffa
|
@ -2,6 +2,7 @@ import {bootstrap} from './bootstrap';
|
|||
import * as spliting from './spliting';
|
||||
import * as routes from './configroutes';
|
||||
|
||||
import title from './styles/title.css'
|
||||
import padding from './styles/layout.css'
|
||||
import margin from './styles/margin.scss'
|
||||
import layout from './styles/padding.scss'
|
||||
|
|
|
@ -0,0 +1,24 @@
|
|||
|
||||
h1 {
|
||||
font-size: 32pt;
|
||||
}
|
||||
h2 {
|
||||
font-size: 28pt;
|
||||
}
|
||||
h3 {
|
||||
font-size: 24pt;
|
||||
}
|
||||
h4 {
|
||||
font-size: 20pt;
|
||||
}
|
||||
h5 {
|
||||
font-size: 16pt;
|
||||
}
|
||||
h6 {
|
||||
font-size: 12pt;
|
||||
}
|
||||
|
||||
h1, h2, h3, h4, h5, h6 {
|
||||
padding: 0;
|
||||
margin: .4em 0;
|
||||
}
|
|
@ -75,8 +75,18 @@ gulp.task('webpack-dev-server', ['spliting'], function() {
|
|||
|
||||
var devServer = new WebpackDevServer(webpack(myConfig), {
|
||||
publicPath: '/',
|
||||
stats: {colors: true},
|
||||
contentBase: buildDir
|
||||
contentBase: buildDir,
|
||||
quiet: false,
|
||||
noInfo: false,
|
||||
stats: {
|
||||
assets: true,
|
||||
colors: true,
|
||||
version: false,
|
||||
hash: false,
|
||||
timings: true,
|
||||
chunks: false,
|
||||
chunkModules: false
|
||||
}
|
||||
})
|
||||
.listen(8081, '0.0.0.0', function(err) {
|
||||
if(err) throw new gutil.PluginError('webpack-dev-server', err);
|
||||
|
|
Loading…
Reference in New Issue