Files
link-free/next.config.js

11 lines
175 B
JavaScript
Raw Permalink Normal View History

2021-12-10 20:54:28 -03:00
/** @type {import('next').NextConfig} */
module.exports = {
reactStrictMode: true,
eslint: {
dirs: ['./src/**/*']
2021-12-26 01:02:23 -03:00
},
images: {
domains: ['ucarecdn.com']
2021-12-10 20:54:28 -03:00
}
}