10 lines
277 B
TypeScript
10 lines
277 B
TypeScript
import { fileURLToPath } from 'node:url'
|
|
import { dirname, join } from 'node:path'
|
|
|
|
const currentDir = dirname(fileURLToPath(import.meta.url))
|
|
|
|
export default defineNuxtConfig({
|
|
modules: ['@nuxtjs/tailwindcss'],
|
|
css: [join(currentDir, './app/assets/css/tailwind.css')],
|
|
})
|