vega-frontend-monorepo/apps/trading/tailwind.config.js
2022-02-23 16:29:07 -08:00

13 lines
233 B
JavaScript

const { join } = require('path');
module.exports = {
content: [
join(__dirname, './pages/**/*.{js,ts,jsx,tsx}'),
join(__dirname, './components/**/*.{js,ts,jsx,tsx}'),
],
theme: {
extend: {},
},
plugins: [],
};