mirror of
https://gitlab.com/gitlab-org/gitlab-foss.git
synced 2025-07-20 16:46:17 +00:00
9 lines
178 B
JavaScript
9 lines
178 B
JavaScript
const path = require('node:path');
|
|
|
|
module.exports = {
|
|
plugins: {
|
|
tailwindcss: { config: path.join(__dirname, 'config/tailwind.config.js') },
|
|
autoprefixer: {},
|
|
},
|
|
};
|