mirror of
https://github.com/captbaritone/webamp.git
synced 2026-01-23 02:15:01 +00:00
9 lines
214 B
JavaScript
9 lines
214 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
serverExternalPackages: ["knex", "imagemin-optipng", "discord.js"],
|
|
experimental: {
|
|
viewTransition: true,
|
|
},
|
|
};
|
|
|
|
module.exports = nextConfig;
|