9 lines
172 B
JavaScript
9 lines
172 B
JavaScript
|
const { defineConfig } = require('@vue/cli-service')
|
||
|
module.exports = defineConfig({
|
||
|
transpileDependencies: true
|
||
|
})
|
||
|
module.exports = {
|
||
|
devServer: {
|
||
|
port: 8081
|
||
|
}
|
||
|
}
|