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