31 lines
817 B
TypeScript
31 lines
817 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" }],
|
|
},
|
|
|
|
css: ["@/css/app.sass"],
|
|
buildModules: ["@pinia/nuxt"],
|
|
vite: {
|
|
css: {
|
|
preprocessorOptions: {
|
|
sass: {
|
|
additionalData: `@import "@/css/tools.sass" \n`,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
})
|