- Aggiornato i vari .ENV

This commit is contained in:
Surya Paolo
2025-03-04 20:20:17 +01:00
parent 723ccf07cf
commit 5aa794ef18
117 changed files with 1354 additions and 2331 deletions

View File

@@ -1,9 +1,8 @@
// https://github.com/michael-ciniawsky/postcss-load-config
// postcss.config.js
import autoprefixer from 'autoprefixer'
// import rtlcss from 'postcss-rtlcss'
const autoprefixer = require('autoprefixer');
export default {
module.exports = {
plugins: [
// https://github.com/postcss/autoprefixer
autoprefixer({
@@ -26,7 +25,7 @@ export default {
// If you want to support RTL css, then
// 1. yarn/pnpm/bun/npm install postcss-rtlcss
// 2. optionally set quasar.config.js > framework > lang to an RTL language
// 3. uncomment the following line (and its import statement above):
// rtlcss()
// 3. uncomment the following line:
// require('postcss-rtlcss')()
]
}
};