0
0
Fork 0
salix-front-mindshore-fork2/vue.config.js

27 lines
593 B
JavaScript
Raw Normal View History

2022-02-24 09:12:22 +00:00
module.exports = {
2022-02-25 12:12:14 +00:00
pluginOptions: {
quasar: {
importStrategy: 'kebab',
rtlSupport: false,
},
2022-02-24 09:12:22 +00:00
},
2022-02-25 12:12:14 +00:00
css: {
loaderOptions: {
sass: {
additionalData: `@import "@/styles/quasar.variables.scss";`,
},
},
},
transpileDependencies: ['quasar'],
devServer: {
proxy: {
'^/api': {
target: 'http://localhost:3000',
logLevel: 'debug',
changeOrigin: true,
secure: false,
},
},
},
2022-02-24 09:12:22 +00:00
};