/
coffe
/
admin-panel
Обзор
Документация
Войти
/
coffe
/
admin-panel
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
main
entrypoint/project.json
37 строк
931 B
vwency
init
08 май 2026, 01:35
08 май 2026, 01:35
9e431e9
Код
Авторство
О чём код?
{ "name": "entrypoint", "$schema": "../node_modules/nx/schemas/project-schema.json", "sourceRoot": "entrypoint/src", "projectType": "application", "targets": { "build": { "executor": "nx:run-commands", "dependsOn": ["^build"], "options": { "command": "next build --webpack && cp -r .next/static .next/standalone/entrypoint/.next/static && cp -r public .next/standalone/entrypoint/public", "cwd": "entrypoint" } }, "dev": { "executor": "nx:run-commands", "options": { "command": "next dev --webpack", "cwd": "entrypoint" } }, "start": { "executor": "nx:run-commands", "options": { "command": "next start", "cwd": "entrypoint" } }, "clean": { "executor": "nx:run-commands", "options": { "command": "rm -rf .next dist", "cwd": "entrypoint" } } } }