mirror of
https://github.com/danswer-ai/danswer.git
synced 2025-03-23 08:11:55 +01:00
* Adding sidebar to admin page + adding scaffolding for Web connector + a little styling * Rename APIs * Restyling
20 lines
400 B
JavaScript
20 lines
400 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: [
|
|
"./app/**/*.{js,ts,jsx,tsx,mdx}",
|
|
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
|
|
"./components/**/*.{js,ts,jsx,tsx,mdx}",
|
|
|
|
// Or if using `src` directory:
|
|
"./src/**/*.{js,ts,jsx,tsx,mdx}",
|
|
],
|
|
theme: {
|
|
extend: {
|
|
fontFamily: {
|
|
sans: ["var(--font-inter)"],
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|