daily-examples/custom/text-chat/next.config.js

14 lines
304 B
JavaScript

const withPlugins = require('next-compose-plugins');
const withTM = require('next-transpile-modules')([
'@custom/shared',
'@custom/basic-call',
]);
const packageJson = require('./package.json');
module.exports = withPlugins([withTM], {
env: {
PROJECT_TITLE: packageJson.description,
},
});