13 lines
311 B
JavaScript
13 lines
311 B
JavaScript
/**
|
|
* URL paths that return 410 Gone. Shared by copy-410-paths.mjs and generate-sitemap.mjs.
|
|
* Keep in sync with nginx.conf location blocks.
|
|
*/
|
|
export const PATHS = [
|
|
'2024/02/18/hello-world',
|
|
'pt',
|
|
'feed',
|
|
'category/uncategorized/feed',
|
|
'category/uncategorized',
|
|
'comments/feed',
|
|
];
|