mirror of
https://github.com/501351981/vue-office.git
synced 2025-06-15 07:00:00 +08:00
15 lines
270 B
JavaScript
15 lines
270 B
JavaScript
const { defineConfig } = require('@vue/cli-service')
|
|
module.exports = defineConfig({
|
|
transpileDependencies: true,
|
|
configureWebpack(){
|
|
return {
|
|
resolve: {
|
|
fallback: {
|
|
"util": false,
|
|
"stream": false
|
|
}
|
|
}
|
|
}
|
|
}
|
|
})
|