AEB-57: fix Babylon loader update

This commit is contained in:
iv_vuytsik
2025-09-25 08:31:31 +03:00
parent ac5d0d0b00
commit 214d9d80a9
3 changed files with 31 additions and 14 deletions

View File

@@ -0,0 +1,17 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./app/**/*.{js,ts,jsx,tsx}',
'./components/**/*.{js,ts,jsx,tsx}',
'./lib/**/*.{js,ts,jsx,tsx}',
'./services/**/*.{js,ts,jsx,tsx}',
],
safelist: [],
blocklist: [
'./public/**/*',
'./data/**/*',
'!./assets/big-models/**/*'
],
theme: { extend: {} },
plugins: [],
};