Ok, that makes sense. I just cannot find any helpful information of configuring it.
“Your Vue config (in package.json or vue.config.js file, depending on what you chose when you created your vue app) will also contain a quasar object with some basic Quasar configuration.”
And “Most important property is theme (with possible values “mat” or “ios”), which you can later change should you want.”
That’s all documentation I found.
The file looks like:
module.exports = {
pluginOptions: {
quasar: {
treeShake: true,
},
},
transpileDependencies: [
/[\/]node_modules[\/]quasar[\/]/,
],
};
https://v1.quasar-framework.org/start/vue-cli-plugin
https://github.com/quasarframework/vue-cli-plugin-quasar
Then of course there is
https://v1.quasar-framework.org/quasar-cli/quasar-conf-js
I think it goes into the quasar object. But I had no luck so far.
mode: { electron: true },
Did not work and honestly, it’s feeling like guessing.
I think I have to start over using the quasar-cli without typescript.