Загрузить файлы в «engine»

This commit is contained in:
Aleksandr 2024-12-24 18:22:50 +03:00
parent 6d26629849
commit 8f77e2e19e
3 changed files with 1517 additions and 0 deletions

1494
engine/package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

14
engine/package.json Normal file
View File

@ -0,0 +1,14 @@
{
"name": "php",
"version": "1.0.0",
"description": "engine",
"main": "tailwind.config.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"devDependencies": {
"tailwindcss": "^3.4.17"
}
}

View File

@ -0,0 +1,9 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./template/*.{html,js}"],
theme: {
extend: {},
},
plugins: [],
}