2
0
mirror of https://github.com/inventree/inventree-website.git synced 2025-06-13 10:35:27 +00:00
This commit is contained in:
2021-11-05 22:15:22 +01:00
parent b20935df74
commit 532bcc259b
17 changed files with 18150 additions and 1 deletions

17
home/tailwind.config.js Normal file
View File

@ -0,0 +1,17 @@
/*
* A tailwinds config file used to generate atomic utility css classes.
* See: https://tailwindcss.com/docs/configuration/
* Default: https://github.com/tailwindcss/tailwindcss/blob/master/stubs/defaultConfig.stub.js
*
* Run '$ npm run css:dev' to compile changes in this file.
*/
module.exports = {
purge: [
'{,!(node_modules|_site)/**/}*.{html,md}',
],
theme: {},
plugins: [
require('@tailwindcss/typography'),
],
}