Initial commit

This commit is contained in:
kandrusyak
2023-01-15 22:39:37 +03:00
parent 1d6c521ed6
commit 58c8fe59ef
40 changed files with 649 additions and 71 deletions

13
.postcssrc.js Normal file
View File

@@ -0,0 +1,13 @@
const plugins = [
require('autoprefixer')
]
if (process.env.QUASAR_RTL) {
plugins.push(
require('postcss-rtl')({})
)
}
module.exports = {
plugins
}