Build error occurred
Error: Page "/client/[clientId]" is missing "generateStaticParams()" so it cannot be used with "output: export" config.
// /pages/client/[clientId].js
export async function getStaticPaths() {
const clientIds = await fetchClientIdsFromDatabase();
return {
paths: clientIds.map(clientId => ({params: {clientId: clientId}})),
fallback: false,
};
}
// next.config.js
export default {
output: 'export',
}
// или
module.exports = {
output: 'export',
}
Как можно установить чат с поддержкой на сайт?
def f(x):
на function f (x) { }
. Если хочется синтаксического сахара, то вот вам целая бочка: https://coffeescript.org/ - ложку дёгтя сами добавите или найдёте для разбавления. {
"AudioCaptureAllowedUrls":["http://[*.]mysite.ru/"],
"VideoCaptureAllowedUrls":["http://[*.]mysite.ru/"]
}
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome]
"AudioCaptureAllowed"=dword:00000001
"VideoCaptureAllowed"=dword:00000001
[HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\AudioCaptureAllowedUrls]
"1"="http://[*.]mysite.ru/"
[HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\VideoCaptureAllowedUrls]
"1"="http://[*.]mysite.ru/"
$(function() {
$(window).on("click", e => {
$('.header-nav-list-item.subnav').each(function() {
const $subMenu = $(this).find(".header-nav-list-subnav-menu");
const isVisible = e.target === this || $.contains(this, e.target);
$subMenu.toggle(isVisible);
// if (!isVisible) $subMenu.hide();
});
});
});