1.2 KiB
Stack
- NUXT 4
Dev du site en local
NUXT
Démarrer NUXT
- npm run dev
- URL : http://localhost:3000/
Site de développement
URL
https://2025.orchestre-ile.com/
TODO
Serveur web
Créer un vrai /security.txt (ou /.well-known/security.txt) au lieu de le renvoyer en 404. dans le fichier de conf NGINX /etc/nginx/sites-available$ sudo nano wondif_2025 # Fichier standard optionnel (si tu ne le fournis pas) location = /security.txt { return 404; }
Dev
MEDIAS QUERIES
@media (max-width: 599px) { . { xxx } } @media (min-width: 600px) { . { xxx } } @media (min-width: 700px) { . { xxx } } @media (min-width: 800px) { . { xxx } } @media (min-width: 900px) { . { xxx } }
@media (min-width: 1000px) { . { xxx } }
@media (min-width: 1100px) { . { xxx } }
@media (min-width: 1200px) { . { xxx } }
@media (min-width: 1300px) { . { xxx } }
@media (min-width: 1400px) { . { xxx } }
padded: { type: Boolean, default: true }, // padding vertical
&--padded {
padding-top: 30px;
padding-bottom: 50px;
}