Skip to content

Commit

Permalink
feat(website): add stretchable layout for playground (#2067)
Browse files Browse the repository at this point in the history
Signed-off-by: jerensl <[email protected]>
Co-authored-by: Ashmit JaiSarita Gupta <[email protected]>
Co-authored-by: asyncapi-bot <[email protected]>
Co-authored-by: Jonas Lagoni <[email protected]>
  • Loading branch information
4 people authored Sep 21, 2024
1 parent 9b31cf4 commit 1210d14
Show file tree
Hide file tree
Showing 12 changed files with 726 additions and 146 deletions.
7 changes: 5 additions & 2 deletions modelina-website/next.config.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
const isGithubActions = process.env.GITHUB_ACTIONS || false;

const withBundleAnalyzer = require('@next/bundle-analyzer')({
enabled: process.env.ANALYZE === 'true',
})

let assetPrefix = '/';
let basePath = '';

Expand All @@ -20,4 +23,4 @@ const nextConfig = {
}
};

module.exports = nextConfig;
module.exports = withBundleAnalyzer(nextConfig);
Loading

0 comments on commit 1210d14

Please sign in to comment.