Version 2

This commit is contained in:
mbaharip
2024-04-06 22:09:03 +07:00
parent 3be80bc9fb
commit 4c0ba8288a
99 changed files with 5381 additions and 2342 deletions
+5 -17
View File
@@ -1,21 +1,10 @@
/** @type {import('next').NextConfig} */
// const withMDX = require("@next/mdx")({
// extension: /\.mdx?$/,
// options: {
// // If you use remark-gfm, you'll need to use next.config.mjs
// // as the package is ESM only
// // https://github.com/remarkjs/remark-gfm#install
// remarkPlugins: [],
// rehypePlugins: [],
// // If you use `MDXProvider`, uncomment the following line.
// providerImportSource: "@mdx-js/react",
// },
// });
const nextConfig = {
// pageExtensions: ["ts", "tsx", "js", "jsx", "md", "mdx"],
reactStrictMode: true,
webpack: (config) => {
config.resolve.alias.canvas = false;
return config;
},
// async headers() {
// return [
// {
@@ -31,5 +20,4 @@ const nextConfig = {
// },
};
// module.exports = withMDX(nextConfig);
module.exports = nextConfig;