mirror of
https://github.com/zammad/zammad
synced 2026-05-24 09:48:36 +00:00
12 lines
256 B
JavaScript
12 lines
256 B
JavaScript
// Copyright (C) 2012-2022 Zammad Foundation, https://zammad-foundation.org/
|
|
|
|
const path = require('path')
|
|
|
|
module.exports = {
|
|
plugins: {
|
|
tailwindcss: {
|
|
config: path.resolve(__dirname, 'tailwind.config.js'),
|
|
},
|
|
autoprefixer: {},
|
|
},
|
|
}
|