t2-mapper/next.config.ts
2025-11-30 11:51:27 -08:00

22 lines
477 B
TypeScript

module.exports = {
output: "export",
distDir: process.env.NODE_ENV === "production" ? "./docs" : undefined,
basePath: "/t2-mapper",
assetPrefix: "/t2-mapper/",
trailingSlash: true,
async headers() {
return [
{
// TorqueScript files should be served as text
source: "/:path*.cs",
headers: [
{
key: "Content-Type",
value: "text/plain; charset=utf-8",
},
],
},
];
},
};