init: шаблон Next.js приложения
- Next.js 16 + React 19 + TypeScript
- Mantine UI + PostCSS Modules
- Biome (линтинг и форматирование)
- Zustand, SWR
- Структура FSD (screens, widgets, features, entities, shared)
- Шаблоны генерации (.templates/): component, screen, feature, widget, entity, layout, store
- Конфигурация VS Code (расширения, настройки)
- CSS-токены (цвета, отступы, радиусы, медиа)
- Open Graph метаданные
- Тестовый home screen с Mantine
2026-03-28 22:11:43 +03:00
|
|
|
/** @type {import('postcss-load-config').Config} */
|
|
|
|
|
const config = {
|
|
|
|
|
plugins: {
|
|
|
|
|
'postcss-preset-mantine': {},
|
|
|
|
|
'postcss-simple-vars': {
|
|
|
|
|
variables: {
|
|
|
|
|
'mantine-breakpoint-xs': '36em',
|
|
|
|
|
'mantine-breakpoint-sm': '48em',
|
|
|
|
|
'mantine-breakpoint-md': '62em',
|
|
|
|
|
'mantine-breakpoint-lg': '75em',
|
|
|
|
|
'mantine-breakpoint-xl': '88em',
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
},
|
2026-03-29 13:23:00 +03:00
|
|
|
};
|
init: шаблон Next.js приложения
- Next.js 16 + React 19 + TypeScript
- Mantine UI + PostCSS Modules
- Biome (линтинг и форматирование)
- Zustand, SWR
- Структура FSD (screens, widgets, features, entities, shared)
- Шаблоны генерации (.templates/): component, screen, feature, widget, entity, layout, store
- Конфигурация VS Code (расширения, настройки)
- CSS-токены (цвета, отступы, радиусы, медиа)
- Open Graph метаданные
- Тестовый home screen с Mantine
2026-03-28 22:11:43 +03:00
|
|
|
|
2026-03-29 13:23:00 +03:00
|
|
|
export default config;
|