mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-23 17:19:37 +02:00
Co-authored-by: Alf Eaton <alf.eaton@overleaf.com> GitOrigin-RevId: 79bb329932b1e6fcc88f648bca9cc4bee215cd41
10 lines
182 B
JavaScript
10 lines
182 B
JavaScript
const path = require('node:path')
|
|
module.exports = {
|
|
plugins: {
|
|
tailwindcss: {
|
|
config: path.resolve(__dirname, 'tailwind.config.js'),
|
|
},
|
|
autoprefixer: {},
|
|
},
|
|
}
|