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