mirror of
https://github.com/ManInDark/HabitTrove.git
synced 2026-01-20 22:24:28 +01:00
16 lines
287 B
TypeScript
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;
|