proxyraye-nextjs/next.config.js

11 lines
249 B
JavaScript
Raw Normal View History

2024-04-24 17:26:40 +00:00
const createNextIntlPlugin = require('next-intl/plugin');
const withNextIntl = createNextIntlPlugin();
const path = require('path')
module.exports = withNextIntl({
sassOptions: {
includePaths: [path.join(__dirname, 'src/styles')],
},
})