This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from typing import Type, Callable, Any | |
from bson.objectid import ObjectId, InvalidId | |
from pydantic import BaseModel, ValidationError | |
from pydantic_core import CoreSchema, core_schema | |
class PydanticObjectId(ObjectId): | |
@classmethod | |
def __get_pydantic_core_schema__( |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Generates a sitemap based on the entries in exportPathMap in next.config.js file | |
Author: Joran Quinten | |
Don't forget to add the domain name as process variable PUBLIC_DOMAIN! | |
Trigger the file with a separate script in your package.json and add it to your build command in Netlify | |
(for instance, set Build command to: "npm run production && npm run postexport") |