05d53bbf4c
* Initial commit of generated mainnet-stats directory * Migration partly complete * Migration complete * Vega logo now in ui toolkit * Specified a port that stops conflicts with other e2e tests * Extra config for swapping to port that stops conflicts with other e2e tests. Also file name case change * Adding the Cypress project ID to allow recording * fix test * Mainnet stats manager moved into library * Mainnet stats project now importing manager element from lib * Block Explorer has mainnet stats on home route * Styling tweak to stop mainnet stats tables trying to match heights * Spacing alignment tweaks * Changing header text and tests to align with other branches * Correct header test for mainnet-stats app * Correct h3 test for mainnet-stats app * Fix linting issue * fix casing issue for CI * Corrected mistake in merge Co-authored-by: Dexter <dexter.edwards93@gmail.com>
13 lines
345 B
JavaScript
13 lines
345 B
JavaScript
const { join } = require('path');
|
|
const { createGlobPatternsForDependencies } = require('@nrwl/next/tailwind');
|
|
const theme = require('../../libs/tailwindcss-config/src/theme');
|
|
|
|
module.exports = {
|
|
content: [
|
|
join(__dirname, 'src/**/*.{js,ts,jsx,tsx}'),
|
|
...createGlobPatternsForDependencies(__dirname),
|
|
],
|
|
theme,
|
|
plugins: [],
|
|
};
|