Use user_id in places we were using username. Still debating this. Start getting this working with API backend, until there were calls to /api/sticker which don't exist in the API yet. Then I rediscovered the local json-server. So now there are 2 api backends. We'll incrementally migrate from the first version to the second. SCSS and tailwind weren't working for nav-items.css. The browser just saw the raw version. So for now, just inlined that. Probably these nav items will become components (if they are shared).
20 lines
399 B
JavaScript
20 lines
399 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
import primeui from 'tailwindcss-primeui'
|
|
|
|
export default {
|
|
content: [
|
|
"./index.html",
|
|
"./src/**/*.{vue,js,ts,jsx,tsx}",
|
|
"./node_modules/**/*.{vue,js,ts,jsx,tsx}",
|
|
],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
primary: '#CCCCCC',
|
|
secondary: '#ecc94b',
|
|
neutral: '#ec4c9b',
|
|
},
|
|
},
|
|
},
|
|
plugins: [primeui],
|
|
}
|