Изменена архитектура проекта, проправлены инпорты и синтаксис html для pug

This commit is contained in:
DwCay
2022-10-10 13:29:42 +03:00
parent 9471436477
commit 00ad9ffc80
6 changed files with 356 additions and 168 deletions

View File

@@ -1,7 +1,9 @@
const { defineConfig } = require('@vue/cli-service');
module.exports = defineConfig({
transpileDependencies: true,
transpileDependencies: [
'quasar'
],
chainWebpack: (config) => {
const pugRule = config.module.rule('pug');
@@ -9,6 +11,7 @@ module.exports = defineConfig({
pugRule.uses.clear();
pugRule.oneOfs.clear();
},
configureWebpack: {
module: {
rules: [
@@ -33,4 +36,11 @@ module.exports = defineConfig({
],
},
},
pluginOptions: {
quasar: {
importStrategy: 'kebab',
rtlSupport: false
}
}
});