36 lines
927 B
TypeScript
36 lines
927 B
TypeScript
|
import { defineNuxtConfig } from "nuxt3"
|
||
|
|
||
|
// https://v3.nuxtjs.org/docs/directory-structure/nuxt.config
|
||
|
export default defineNuxtConfig({
|
||
|
// Global page headers: https://go.nuxtjs.dev/config-head
|
||
|
head: {
|
||
|
title: "front",
|
||
|
htmlAttrs: {
|
||
|
lang: "fr",
|
||
|
},
|
||
|
meta: [
|
||
|
{ charset: "utf-8" },
|
||
|
{ name: "viewport", content: "width=device-width, initial-scale=1" },
|
||
|
{ hid: "description", name: "description", content: "" },
|
||
|
{ name: "format-detection", content: "telephone=no" },
|
||
|
],
|
||
|
link: [{ rel: "icon", type: "image/x-icon", href: "/favicon.ico" }],
|
||
|
},
|
||
|
|
||
|
// Modules: https://go.nuxtjs.dev/config-modules
|
||
|
modules: [
|
||
|
// https://go.nuxtjs.dev/axios
|
||
|
"@nuxtjs/axios",
|
||
|
],
|
||
|
|
||
|
// Axios module configuration: https://go.nuxtjs.dev/config-axios
|
||
|
axios: {
|
||
|
proxyHeaders: false,
|
||
|
},
|
||
|
|
||
|
buildModules: [
|
||
|
// https://go.nuxtjs.dev/tailwindcss
|
||
|
"@nuxtjs/tailwindcss",
|
||
|
],
|
||
|
})
|