mirror of
https://github.com/allaunthefox/Research-Stack.git
synced 2026-07-31 03:05:21 +00:00
13 lines
275 B
JavaScript
13 lines
275 B
JavaScript
import { dirname, join } from 'path';
|
|
import { fileURLToPath } from 'url';
|
|
|
|
const __dirname = dirname(fileURLToPath(import.meta.url));
|
|
|
|
export default {
|
|
plugins: {
|
|
tailwindcss: {
|
|
config: join(__dirname, 'tailwind.config.ts'),
|
|
},
|
|
autoprefixer: {},
|
|
},
|
|
};
|