12345678910111213141516 |
- module.exports = {
- lintOnSave: process.env.NODE_ENV !== 'production',
- outputDir: '../wwwroot',
- //devServer: {
- // port: 5000
- //},
- pluginOptions: {
- quasar: {
- rtlSupport: true,
- treeShake: true
- }
- },
- transpileDependencies: [
- /[\\/]node_modules[\\/]quasar[\\/]/
- ]
- }
|