mirror of
https://github.com/boostorg/website-v2-docs.git
synced 2026-01-19 04:42:17 +00:00
- upgrade highlight.js from 9.18.3 to 11.9.0 - simplify highlight.bundle.js by using common bundle and automatic language detection - update build configuration for css processing - update package.json and package-lock.json dependencies - fix javascript lint errors fixes #397
9 lines
176 B
JavaScript
9 lines
176 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: ['**/*.hbs', './src/**/*.{html,js,jsx,ts,tsx,vue}'],
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
plugins: [],
|
|
}
|