Change tagline to: Create secure and GDPR-compliant web apps

This commit is contained in:
Daniel Vassallo
2019-10-17 12:59:52 -07:00
parent 0176ad9836
commit 2690160c08
13 changed files with 517 additions and 457 deletions

View File

@@ -1,6 +1,13 @@
module.exports = {
plugins: [
require('tailwindcss'),
require('autoprefixer')
require('autoprefixer'),
process.env.NODE_ENV === 'production' && require('@fullhuman/postcss-purgecss')({
content: [
'./src/**/*.html',
'./src/**/*.css',
],
defaultExtractor: content => content.match(/[A-Za-z0-9-_:/]+/g) || []
})
]
}