@quasar/app-vite
Version:
Quasar Framework App CLI with Vite
18 lines (16 loc) • 342 B
JavaScript
const ignoreList = [
'dist/*',
'src-capacitor/*',
'src-cordova/*',
'.quasar/*',
'quasar.config.*.temporary.compiled*'
]
export default {
configs: {
// using a function so we can add more configurable
// stuff later if needed without breaking changes
recommended() {
return [{ ignores: ignoreList }]
}
}
}