14 lines
245 B
JavaScript
14 lines
245 B
JavaScript
|
|
const { defineConfig } = require('@vue/cli-service')
|
||
|
|
module.exports = defineConfig({
|
||
|
|
transpileDependencies: [
|
||
|
|
'quasar'
|
||
|
|
],
|
||
|
|
|
||
|
|
pluginOptions: {
|
||
|
|
quasar: {
|
||
|
|
importStrategy: 'kebab',
|
||
|
|
rtlSupport: false
|
||
|
|
}
|
||
|
|
}
|
||
|
|
})
|