Skip to content

Commit c1031b0

Browse files
committed
fix github.com/vuejs/vue-loader/issues/1395
1 parent f8cb88b commit c1031b0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/stylePlugins/trim.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import * as postcss from 'postcss'
44
export default postcss.plugin('trim', () => (css: Root) => {
55
css.walk(({ type, raws }) => {
66
if (type === 'rule' || type === 'atrule') {
7-
raws.before = raws.after = '\n'
7+
raws.before = raws.after = ''
88
}
99
})
1010
})

0 commit comments

Comments
 (0)