Initial Commit

This commit is contained in:
Nazareno Oviedo
2022-03-28 15:00:11 -03:00
commit 4aa3fdbc2a
147 changed files with 8710 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
const withPlugins = require('next-compose-plugins')
const withBundleAnalyzer = require('@next/bundle-analyzer')
module.exports = withPlugins(
[withBundleAnalyzer({ enabled: process.env.ANALYZE === 'true' })],
{
reactStrictMode: false,
swcMinify: true,
images: {
formats: ['image/avif', 'image/webp']
}
}
)