mirror of
https://github.com/NeuralNomadsAI/CodeNomad.git
synced 2026-07-10 00:14:27 +00:00
11 lines
266 B
JavaScript
11 lines
266 B
JavaScript
import { fileURLToPath } from "url"
|
|
import { dirname, resolve } from "path"
|
|
|
|
const __dirname = dirname(fileURLToPath(import.meta.url))
|
|
|
|
export default {
|
|
plugins: {
|
|
tailwindcss: { config: resolve(__dirname, "tailwind.config.js") },
|
|
autoprefixer: {},
|
|
},
|
|
}
|