11 lines
249 B
JavaScript
11 lines
249 B
JavaScript
|
const createNextIntlPlugin = require('next-intl/plugin');
|
||
|
|
||
|
const withNextIntl = createNextIntlPlugin();
|
||
|
|
||
|
const path = require('path')
|
||
|
|
||
|
module.exports = withNextIntl({
|
||
|
sassOptions: {
|
||
|
includePaths: [path.join(__dirname, 'src/styles')],
|
||
|
},
|
||
|
})
|