mirror of
https://git.rezel.net/LudoTech/traque.git
synced 2026-04-10 16:30:18 +02:00
eslint for mobile + new maps API key + cleaning
This commit is contained in:
@@ -1,3 +0,0 @@
|
||||
{
|
||||
"extends": "next/core-web-vitals"
|
||||
}
|
||||
@@ -1,6 +1,4 @@
|
||||
module.exports = {
|
||||
plugins: {
|
||||
tailwindcss: {},
|
||||
autoprefixer: {},
|
||||
},
|
||||
export const plugins = {
|
||||
tailwindcss: {},
|
||||
autoprefixer: {},
|
||||
};
|
||||
|
||||
@@ -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 = [];
|
||||
|
||||
Reference in New Issue
Block a user