Skip to content
Snippets Groups Projects
Commit 3cf912e7 authored by Tadeusz Miesiąc's avatar Tadeusz Miesiąc
Browse files

chore(fixed missing tailwind styles import): fixed missing tailwind styles import

parent fd40c738
No related branches found
No related tags found
2 merge requests!223reset the pin numbers before search results are fetch (so the results will be...,!6feat(set up placeholders for layout): set up placeholders for layout
......@@ -10,7 +10,8 @@
"plugin:react/recommended",
"plugin:jsx-a11y/recommended",
"plugin:@next/next/recommended",
"prettier"
"prettier",
"next"
],
"parserOptions": {
"ecmaVersion": 2015,
......@@ -65,7 +66,14 @@
],
"optionalDependencies": false
}
]
],
"indent": ["error", 2],
"react/jsx-indent": ["error", 2],
"react/jsx-indent-props": ["error", 2],
"linebreak-style": ["error", "unix"],
"semi": ["error", "always"],
"no-cond-assign": ["error", "always"],
"no-trailing-spaces": ["error"]
},
"overrides": [
{
......
import type { Config } from 'tailwindcss'
import type { Config } from 'tailwindcss';
const config: Config = {
content: [
'./src/pages/**/*.{js,ts,jsx,tsx,mdx}',
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
'./src/app/**/*.{js,ts,jsx,tsx,mdx}',
],
content: ['./src/**/*.ts', './src/**/*.tsx'],
theme: {
extend: {
backgroundImage: {
'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
'gradient-conic':
'conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))',
'gradient-conic': 'conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))',
},
},
},
plugins: [],
}
export default config
};
export default config;
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment