4e343d49d0
* use vue router * use pinia * use tailwindcss * use vite * transform /api/login and /api/login/callback into JSON APIs * add Access-Control-Allow-Credentials header * add TODO about JSON errors
11 lines
159 B
JavaScript
11 lines
159 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: [
|
|
'./src/**/*.{html,js,vue}'
|
|
],
|
|
theme: {
|
|
extend: {}
|
|
},
|
|
plugins: []
|
|
}
|