mirror of
https://code.castopod.org/adaures/castopod
synced 2025-04-23 01:01:20 +00:00

- replace rollup config with vitejs - use vite dev server during development to take advantage of hot module replacement (HMR) - add vite service using Vite library to load css and js assets - update package.json scripts and remove unnecessary dependencies - update scripts/bundle-prepare.sh closes #107
58 lines
1.2 KiB
JavaScript
58 lines
1.2 KiB
JavaScript
/* eslint-disable */
|
|
|
|
module.exports = {
|
|
mode: "jit",
|
|
purge: [
|
|
"./app/Views/**/*.php",
|
|
"./app/Helpers/*.php",
|
|
"./app/Resources/**/*.ts",
|
|
],
|
|
theme: {
|
|
extend: {
|
|
fontFamily: {
|
|
sans: ["Montserrat", "sans-serif"],
|
|
display: ["Kumbh Sans", "sans-serif"],
|
|
body: ["Montserrat", "sans-serif"],
|
|
},
|
|
colors: {
|
|
pine: {
|
|
50: "#ebf8f8",
|
|
100: "#cff7f3",
|
|
200: "#9df2e4",
|
|
300: "#5ee8d4",
|
|
400: "#1cd7ba",
|
|
500: "#08c09a",
|
|
600: "#07a57d",
|
|
700: "#009486",
|
|
800: "#006D60",
|
|
900: "#00564A",
|
|
},
|
|
rose: {
|
|
50: "#fcf9f8",
|
|
100: "#fdeef2",
|
|
200: "#fbcfe4",
|
|
300: "#faa7cd",
|
|
400: "#fb6ea5",
|
|
500: "#fc437c",
|
|
600: "#f24664",
|
|
700: "#dd1f47",
|
|
800: "#b21a39",
|
|
900: "#8e162e",
|
|
},
|
|
},
|
|
spacing: {
|
|
112: "28rem",
|
|
},
|
|
gridTemplateColumns: {
|
|
podcasts: "repeat(auto-fill, minmax(14rem, 1fr))",
|
|
},
|
|
},
|
|
},
|
|
variants: {},
|
|
plugins: [
|
|
require("@tailwindcss/forms"),
|
|
require("@tailwindcss/typography"),
|
|
require("@tailwindcss/line-clamp"),
|
|
],
|
|
};
|