demos: move to module only

This commit is contained in:
Philipp Kühn
2021-09-23 22:25:54 +02:00
parent 724b90d8d6
commit c85df80126
5 changed files with 164 additions and 133 deletions

View File

@@ -1,6 +1,10 @@
module.exports = {
plugins: {
tailwindcss: {},
autoprefixer: {},
},
import tailwind from 'tailwindcss'
import autoprefixer from 'autoprefixer'
import tailwindConfig from './tailwind.config.js'
export default {
plugins: [
tailwind(tailwindConfig),
autoprefixer,
],
}