11 lines
246 B
JavaScript
11 lines
246 B
JavaScript
|
const { defineConfig } = require('@vue/cli-service')
|
||
|
module.exports = defineConfig({
|
||
|
transpileDependencies: true,
|
||
|
|
||
|
pluginOptions: {
|
||
|
vuetify: {
|
||
|
// https://github.com/vuetifyjs/vuetify-loader/tree/next/packages/vuetify-loader
|
||
|
}
|
||
|
}
|
||
|
})
|