c3dae929c6
* feat: mui support & basic theming * feat: entgamers favicon * feat: public images until dynamic content can be used * feat: entgamers & gaming assets * feat: eslint extra rules * feat: mui theme modifications * feat: fontawesome, gsap, bundle analyzer * feat: common interfaces * feat: basic layout * chore: upadted dependencies * chore: updated dependencies * feat: updated link styles * feat: layout now have better interfaces * feat: basic seo component * feat: static website * feat: env variable rules in .gitignore * feat: added lint to pre-commit
12 lines
268 B
JavaScript
12 lines
268 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const withBundleAnalyzer = require('@next/bundle-analyzer')({
|
|
enabled: process.env.ANALYZE === 'true',
|
|
openAnalyzer: false
|
|
})
|
|
|
|
const nextConfig = withBundleAnalyzer({
|
|
reactStrictMode: true
|
|
})
|
|
|
|
module.exports = nextConfig
|