mirror of
https://github.com/enso-org/enso.git
synced 2024-12-22 20:01:34 +03:00
18 lines
478 B
TypeScript
18 lines
478 B
TypeScript
|
/** @file Configuration for Tailwind. */
|
||
|
import * as path from 'node:path'
|
||
|
import * as url from 'node:url'
|
||
|
|
||
|
// =================
|
||
|
// === Constants ===
|
||
|
// =================
|
||
|
|
||
|
const THIS_PATH = path.resolve(path.dirname(url.fileURLToPath(import.meta.url)))
|
||
|
|
||
|
// =====================
|
||
|
// === Configuration ===
|
||
|
// =====================
|
||
|
|
||
|
// This is a third-party API that we do not control.
|
||
|
/* eslint-disable no-restricted-syntax */
|
||
|
export const content = [THIS_PATH + '/src/**/*.tsx']
|