Files
SnapOtter/apps/landing/next.config.ts
T

15 lines
300 B
TypeScript
Raw Normal View History

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
output: "export",
transpilePackages: ["@snapotter/shared"],
webpack: (config) => {
config.resolve.extensionAlias = {
".js": [".ts", ".tsx", ".js"],
};
return config;
},
};
export default nextConfig;