From 0aeb7bea4b71aa2a6d86838c3ebd5c475eca0d24 Mon Sep 17 00:00:00 2001 From: Fascinated Date: Mon, 10 Jul 2023 05:08:39 +0100 Subject: [PATCH] more spaces insead of tabs --- .gitignore | 1 - next.config.js | 20 ++++++++++---------- tailwind.config.js | 16 ++++++++-------- 3 files changed, 18 insertions(+), 19 deletions(-) diff --git a/.gitignore b/.gitignore index 88083b5..311622e 100644 --- a/.gitignore +++ b/.gitignore @@ -143,4 +143,3 @@ dist .yarn/build-state.yml .yarn/install-state.gz .pnp.* - diff --git a/next.config.js b/next.config.js index 76c2d5a..c456925 100644 --- a/next.config.js +++ b/next.config.js @@ -1,15 +1,15 @@ /** @type {import('next').NextConfig} */ const nextConfig = { - images: { - remotePatterns: [ - { - protocol: "https", - hostname: "**", - port: "", - pathname: "/**", - }, - ], - }, + images: { + remotePatterns: [ + { + protocol: "https", + hostname: "**", + port: "", + pathname: "/**", + }, + ], + }, }; module.exports = nextConfig; diff --git a/tailwind.config.js b/tailwind.config.js index b8e6a7f..d8dc1b7 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -1,11 +1,11 @@ /** @type {import('tailwindcss').Config} */ module.exports = { - content: [ - "./src/pages/**/*.{js,ts,jsx,tsx,mdx}", - "./src/components/**/*.{js,ts,jsx,tsx,mdx}", - "./src/app/**/*.{js,ts,jsx,tsx,mdx}", - "./config.json", - ], - theme: {}, - plugins: [], + content: [ + "./src/pages/**/*.{js,ts,jsx,tsx,mdx}", + "./src/components/**/*.{js,ts,jsx,tsx,mdx}", + "./src/app/**/*.{js,ts,jsx,tsx,mdx}", + "./config.json", + ], + theme: {}, + plugins: [], };