Trying to add Storefront UI Module
in my newly created nuxt 3 project. I just added tailwindcss which works perfectly fine. Then I wanted add a UI library and opted for Storefront UI because in my work they are using so I thought it will help me get my hands dirty. I followed all the steps they have mentioned in the documentation but at the end I get following error.
I have following directory structure:
~/assets/css/tailwind.css
***nuxt.config.ts:***
export default defineNuxtConfig({
modules: [
'@nuxtjs/tailwindcss',
'@storefront-ui/nuxt',
],
css: [
'@/assets/css/tailwind.css',
],
})
tailwind.config.ts
~/assets/css/tailwind.css
PS: I create tailwind.config.ts
file using npx tailwindcss init
0 Replies