eslint for mobile + new maps API key + cleaning

This commit is contained in:
Sebastien Riviere
2026-02-15 19:23:29 +01:00
parent c1f1688794
commit 0768609ada
34 changed files with 765 additions and 761 deletions

View File

@@ -1,3 +0,0 @@
{
"extends": "next/core-web-vitals"
}

View File

@@ -1,6 +1,4 @@
module.exports = {
plugins: {
tailwindcss: {},
autoprefixer: {},
},
export const plugins = {
tailwindcss: {},
autoprefixer: {},
};

View File

@@ -1,26 +1,29 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
theme: {
extend: {
colors: {
'custom-green': '#19e119',
'custom-red': '#e11919',
'custom-orange': '#fa6400',
'custom-blue': '#1e90ff',
'custom-grey': '#808080',
'custom-light-blue': '#80b3ff'
}
export const theme = {
extend: {
colors: {
'custom-green': '#19e119',
'custom-red': '#e11919',
'custom-orange': '#fa6400',
'custom-blue': '#1e90ff',
'custom-grey': '#808080',
'custom-light-blue': '#80b3ff'
}
},
mode: 'jit',
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
],
fontFamily: {
sans: ["Inter", "sans-serif"],
serif: ["Merriweather", "serif"],
},
plugins: [],
}
};
export const mode = 'jit';
export const content = [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
];
export const fontFamily = {
sans: ["Inter", "sans-serif"],
serif: ["Merriweather", "serif"],
};
export const plugins = [];