10 lines
116 B
JavaScript
10 lines
116 B
JavaScript
|
const colors = require('./sub-dir/colors')
|
||
|
|
||
|
module.exports = {
|
||
|
theme: {
|
||
|
extend: {
|
||
|
colors,
|
||
|
},
|
||
|
},
|
||
|
}
|