Move blog into website/blog
Nest the blog work within the website directory.
This commit is contained in:
parent
54d1a0048a
commit
95e761e59b
40 changed files with 2 additions and 3 deletions
14
website/blog/themes/tailwind/postcss.config.js
Normal file
14
website/blog/themes/tailwind/postcss.config.js
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
const purgecss = require('@fullhuman/postcss-purgecss')({
|
||||
content: ['./layouts/**/*.html'],
|
||||
defaultExtractor: content => content.match(/[A-Za-z0-9-_:/]+/g) || []
|
||||
})
|
||||
|
||||
module.exports = {
|
||||
plugins: [
|
||||
require('tailwindcss'),
|
||||
require('autoprefixer'),
|
||||
...process.env.NODE_ENV === 'production'
|
||||
? [purgecss, require('cssnano')]
|
||||
: []
|
||||
]
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue