vue.config.js 347 B

12345678910111213141516
  1. module.exports = {
  2. lintOnSave: process.env.NODE_ENV !== 'production',
  3. outputDir: '../wwwroot',
  4. //devServer: {
  5. // port: 5000
  6. //},
  7. pluginOptions: {
  8. quasar: {
  9. rtlSupport: true,
  10. treeShake: true
  11. }
  12. },
  13. transpileDependencies: [
  14. /[\\/]node_modules[\\/]quasar[\\/]/
  15. ]
  16. }