Skip to content

Commit ed5dc88

Browse files
committed
ensure white space is removed
1 parent 925a2f3 commit ed5dc88

File tree

2 files changed

+22
-6
lines changed

2 files changed

+22
-6
lines changed

.eslintingnore

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
!.*
2-
node_modules/**
2+
node_modules/**
3+
dist/**

rollup.config.js

+20-5
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,10 @@ export default () => {
6868
}),
6969
vue({
7070
template: {
71-
isProduction: true
71+
isProduction: true,
72+
compilerOptions: {
73+
preserveWhitespace: false
74+
}
7275
}
7376
}),
7477
babel(babelConfig),
@@ -131,7 +134,10 @@ export default () => {
131134
}),
132135
vue({
133136
template: {
134-
isProduction: true
137+
isProduction: true,
138+
compilerOptions: {
139+
preserveWhitespace: false
140+
}
135141
}
136142
}),
137143
babel(babelConfig),
@@ -152,7 +158,10 @@ export default () => {
152158
}),
153159
vue({
154160
template: {
155-
isProduction: true
161+
isProduction: true,
162+
compilerOptions: {
163+
preserveWhitespace: false
164+
}
156165
}
157166
}),
158167
babel(babelConfig),
@@ -178,7 +187,10 @@ export default () => {
178187
}),
179188
vue({
180189
template: {
181-
isProduction: true
190+
isProduction: true,
191+
compilerOptions: {
192+
preserveWhitespace: false
193+
}
182194
}
183195
}),
184196
babel(babelConfig),
@@ -199,7 +211,10 @@ export default () => {
199211
}),
200212
vue({
201213
template: {
202-
isProduction: true
214+
isProduction: true,
215+
compilerOptions: {
216+
preserveWhitespace: false
217+
}
203218
}
204219
}),
205220
babel(babelConfig),

0 commit comments

Comments
 (0)