mirror of
https://github.com/locomotivemtl/locomotive-boilerplate.git
synced 2026-01-15 00:55:08 +08:00
20 lines
316 B
JavaScript
20 lines
316 B
JavaScript
module.exports = {
|
|
postcss: {
|
|
options: {
|
|
processors: [
|
|
require('autoprefixer-core')({
|
|
browsers: ['last 2 versions', '> 1%', 'ie >= 9']
|
|
}),
|
|
]
|
|
},
|
|
files: [
|
|
{
|
|
src : ['assets/styles/dist/*.css'],
|
|
dest : 'assets/styles/dist/',
|
|
expand : true,
|
|
flatten : true
|
|
}
|
|
]
|
|
}
|
|
}
|