more spaces insead of tabs
All checks were successful
Publish Docker Image / docker (push) Successful in 1m50s

This commit is contained in:
Lee 2023-07-10 05:08:39 +01:00
parent cc0c9a14e1
commit 0aeb7bea4b
3 changed files with 18 additions and 19 deletions

1
.gitignore vendored

@ -143,4 +143,3 @@ dist
.yarn/build-state.yml
.yarn/install-state.gz
.pnp.*

@ -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;

@ -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: [],
};