mirror of
https://github.com/beak-insights/felicity-lims.git
synced 2025-02-24 00:42:59 +08:00
24 lines
422 B
JavaScript
24 lines
422 B
JavaScript
module.exports = {
|
|
future: {
|
|
removeDeprecatedGapUtilities: true,
|
|
purgeLayersByDefault: true,
|
|
},
|
|
purge: [
|
|
'./index.html',
|
|
'./public/**/*.html',
|
|
'./src/**/*.vue',
|
|
],
|
|
target: 'relaxed',
|
|
prefix: '',
|
|
important: false,
|
|
separator: ':',
|
|
corePlugins: {},
|
|
plugins: [],
|
|
theme: {
|
|
extend: {
|
|
gridTemplateColumns: {
|
|
'dashboard': '150px minmax(350px, 1fr)',
|
|
}
|
|
}
|
|
}
|
|
}
|