fixed warnings

This commit is contained in:
2024-06-25 08:09:53 +02:00
parent 943267be04
commit 717b41384c
2 changed files with 6 additions and 4 deletions
+5 -2
View File
@@ -2,11 +2,14 @@ const withMDX = require('@next/mdx')()
/** @type {import('next').NextConfig} */
const nextConfig = {
sassOptions: {
includePaths: ['*'],
},
pageExtensions: ['js', 'jsx', 'mdx', 'ts', 'tsx'],
experimental: {
pageExtensions: ['js', 'jsx', 'mdx', 'ts', 'tsx'],
serverComponentsExternalPackages: ['sequelize', 'sequelize-typescript', 'bcrypt', '@sequelize/core', '@/app/lib/api/error'],
serverActions: {
allowedOrigins: ['localhost', 'localhost:3000']
},
},
webpack: (config) => {