Esteves Enzo commited on
Commit
53057cb
1 Parent(s): 5be784e

change structure, adding custom routes

Browse files
Files changed (1) hide show
  1. next.config.js +7 -2
next.config.js CHANGED
@@ -1,4 +1,9 @@
1
  /** @type {import('next').NextConfig} */
2
- const nextConfig = {}
 
 
 
 
 
3
 
4
- module.exports = nextConfig
 
1
  /** @type {import('next').NextConfig} */
2
+ const nextConfig = {
3
+ experimental: {
4
+ serverActions: true,
5
+ serverComponentsExternalPackages: ['sharp', 'onnxruntime-node'],
6
+ },
7
+ }
8
 
9
+ module.exports = nextConfig