
* fix: availability creation and expand/collapse settings * additional fixes * Update pages/api/availability/eventtype.ts Co-authored-by: Alex Johansson <alexander@n1s.se> * update branch * fix: more fixes Co-authored-by: Alex Johansson <alexander@n1s.se> Co-authored-by: Bailey Pumfleet <pumfleet@hey.com> Co-authored-by: Mihai Colceriu <colceriumi@gmail.com>
10 lines
282 B
JavaScript
10 lines
282 B
JavaScript
/* eslint-disable @typescript-eslint/no-var-requires */
|
|
const path = require("path");
|
|
|
|
module.exports = {
|
|
i18n: {
|
|
defaultLocale: "en",
|
|
locales: ["en", "fr", "it", "ru", "es", "de", "pt", "ro", "nl", "pt-BR"],
|
|
},
|
|
localePath: path.resolve("./public/static/locales"),
|
|
};
|