Skip to content

Commit 3fb42c0

Browse files
committed
Apply vue ls updates to vue test project
Let's use the recommended ES modules in the vue test app.
1 parent 9fca6d3 commit 3fb42c0

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed
Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
module.exports = {
2-
presets: [
1+
export const presets = [
32
'@vue/cli-plugin-babel/preset'
4-
]
5-
}
3+
];
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
const { defineConfig } = require('@vue/cli-service')
2-
module.exports = defineConfig({
1+
import { defineConfig } from '@vue/cli-service'
2+
export default defineConfig({
33
transpileDependencies: true
44
})

0 commit comments

Comments
 (0)