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