Skip to content

Commit 51f3a92

Browse files
committed
chore: prepublish sync
1 parent 72f085d commit 51f3a92

File tree

32 files changed

+32
-32
lines changed

32 files changed

+32
-32
lines changed

playground/default/vite.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export default defineConfig({
88
plugins: [vue()],
99
resolve: {
1010
alias: {
11-
'@/': fileURLToPath(new URL('./src/', import.meta.url))
11+
'@': fileURLToPath(new URL('./src', import.meta.url))
1212
}
1313
}
1414
})

playground/jsx-router-vuex-with-tests/vite.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export default defineConfig({
99
plugins: [vue(), vueJsx()],
1010
resolve: {
1111
alias: {
12-
'@/': fileURLToPath(new URL('./src/', import.meta.url))
12+
'@': fileURLToPath(new URL('./src', import.meta.url))
1313
}
1414
}
1515
})

playground/jsx-router-vuex/vite.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export default defineConfig({
99
plugins: [vue(), vueJsx()],
1010
resolve: {
1111
alias: {
12-
'@/': fileURLToPath(new URL('./src/', import.meta.url))
12+
'@': fileURLToPath(new URL('./src', import.meta.url))
1313
}
1414
}
1515
})

playground/jsx-router-with-tests/vite.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export default defineConfig({
99
plugins: [vue(), vueJsx()],
1010
resolve: {
1111
alias: {
12-
'@/': fileURLToPath(new URL('./src/', import.meta.url))
12+
'@': fileURLToPath(new URL('./src', import.meta.url))
1313
}
1414
}
1515
})

playground/jsx-router/vite.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export default defineConfig({
99
plugins: [vue(), vueJsx()],
1010
resolve: {
1111
alias: {
12-
'@/': fileURLToPath(new URL('./src/', import.meta.url))
12+
'@': fileURLToPath(new URL('./src', import.meta.url))
1313
}
1414
}
1515
})

playground/jsx-vuex-with-tests/vite.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export default defineConfig({
99
plugins: [vue(), vueJsx()],
1010
resolve: {
1111
alias: {
12-
'@/': fileURLToPath(new URL('./src/', import.meta.url))
12+
'@': fileURLToPath(new URL('./src', import.meta.url))
1313
}
1414
}
1515
})

playground/jsx-vuex/vite.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export default defineConfig({
99
plugins: [vue(), vueJsx()],
1010
resolve: {
1111
alias: {
12-
'@/': fileURLToPath(new URL('./src/', import.meta.url))
12+
'@': fileURLToPath(new URL('./src', import.meta.url))
1313
}
1414
}
1515
})

playground/jsx-with-tests/vite.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export default defineConfig({
99
plugins: [vue(), vueJsx()],
1010
resolve: {
1111
alias: {
12-
'@/': fileURLToPath(new URL('./src/', import.meta.url))
12+
'@': fileURLToPath(new URL('./src', import.meta.url))
1313
}
1414
}
1515
})

playground/jsx/vite.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export default defineConfig({
99
plugins: [vue(), vueJsx()],
1010
resolve: {
1111
alias: {
12-
'@/': fileURLToPath(new URL('./src/', import.meta.url))
12+
'@': fileURLToPath(new URL('./src', import.meta.url))
1313
}
1414
}
1515
})

playground/router-vuex-with-tests/vite.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export default defineConfig({
88
plugins: [vue()],
99
resolve: {
1010
alias: {
11-
'@/': fileURLToPath(new URL('./src/', import.meta.url))
11+
'@': fileURLToPath(new URL('./src', import.meta.url))
1212
}
1313
}
1414
})

0 commit comments

Comments
 (0)