diff --git a/nuxt.config.ts b/nuxt.config.ts index ad65640..f49c2aa 100644 --- a/nuxt.config.ts +++ b/nuxt.config.ts @@ -17,20 +17,7 @@ export default defineNuxtConfig({ '@stores': '/stores', }, tailwindcss: { - config: { - content: [], - important: false, - theme: { - extend: { - colors: { - primary: '#0c0c0d', - secondary: '#18181b', - darkgray: '#121213', - lightgray: '#27272a', - }, - }, - }, - }, + configPath: './tailwind.config.ts', }, typescript: { strict: true, diff --git a/tailwind.config.ts b/tailwind.config.ts new file mode 100644 index 0000000..3e68bb5 --- /dev/null +++ b/tailwind.config.ts @@ -0,0 +1,14 @@ +module.exports = { + content: [], + important: false, + theme: { + extend: { + colors: { + primary: '#0c0c0d', + secondary: '#18181b', + darkgray: '#121213', + lightgray: '#27272a', + }, + }, + }, +}