Files
HabitTrove/next.config.ts
2024-12-31 15:05:49 -05:00

16 lines
287 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
/* config options here */
output: 'standalone',
webpack: (config) => {
config.module.rules.push({
test: /\.md$/,
use: 'raw-loader'
})
return config
}
};
export default nextConfig;