17 lines
378 B
JavaScript
17 lines
378 B
JavaScript
const withPlugins = require('next-compose-plugins');
|
|
const withTM = require('next-transpile-modules')([
|
|
'@custom/shared',
|
|
'@custom/basic-call',
|
|
'@custom/text-chat',
|
|
'@custom/live-streaming',
|
|
'@custom/recording',
|
|
]);
|
|
|
|
const packageJson = require('./package.json');
|
|
|
|
module.exports = withPlugins([withTM], {
|
|
env: {
|
|
PROJECT_TITLE: packageJson.description,
|
|
},
|
|
});
|