SPB Git

spb/trouve-ka Public

Trouve-KA — moteur de recherche web indépendant, Québec-first. Crawler distribué, index OpenSearch, ranking bilingue, galerie d'images. En prod : www.trouve-ka.com

Python 76.8% TypeScript 15.7% SQL 3.9% Shell 1.4% CSS 1.3% Dockerfile 0.7%
270 B · 16 lines javascript
Raw Blame History
1/**2 * Trouve-KA — configuration PostCSS3 * Author: Simon-Pierre Boucher4 * Contact: contact@spboucher.ai5 */67/** @type {import('postcss-load-config').Config} */8const config = {9  plugins: {10    tailwindcss: {},11    autoprefixer: {},12  },13};1415export default config;16