before fix of tailwindcss fml

This commit is contained in:
Hugh Bord 2020-12-19 11:45:52 +10:00
parent fe046ecbbe
commit b6cd7b4e7a
3 changed files with 21 additions and 1 deletions

View File

@ -137,4 +137,4 @@ export default {
}
}
}
</style>
</style>

View File

@ -26,6 +26,8 @@ import App from './App.vue';
import router from './router';
import store from './store';
import "tailwind.min.css"
Vue.config.productionTip = false;
const settings = {

18
tailwind.config.js Normal file
View File

@ -0,0 +1,18 @@
const tailwindcss = require('tailwindcss');
module.exports = {
purge: [
'./public/**/*.html',
'./src/**/*.vue',
],
darkMode: false, // or 'media' or 'class'
theme: {
extend: {},
},
variants: {
extend: {},
},
plugins: [
tailwindcss,
],
}