mirror of
https://gitlab.com/PronounsPage/PronounsPage.git
synced 2025-09-25 14:09:03 -04:00

Nuxt 2 fails with aliases in serverMiddleware, so I had to use tsconfig-paths-webpack-plugin as workaround https://github.com/nuxt/typescript/issues/339
8 lines
447 B
TypeScript
8 lines
447 B
TypeScript
import { Event, day, EventLevel } from '~/src/calendar/helpers.ts';
|
|
|
|
export default [
|
|
// --- static date ---
|
|
new Event('Годовщина декриминализации гомосексуальности в России (1993)', '_law', 4, day(29), EventLevel.Day),
|
|
new Event('Годовщина декриминализации гомосексуальности в Беларуси (1994)', '_law', 3, day(1), EventLevel.Day),
|
|
];
|