Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(website): add stretchable layout for playground #2067

Merged
merged 19 commits into from
Sep 21, 2024
Merged
Show file tree
Hide file tree
Changes from 15 commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
ca94cb8
feat(website): add stretchable layout for playground
jerensl Jul 11, 2024
3bcd97a
Merge branch 'asyncapi:master' into feat/stretchable-layout
jerensl Jul 11, 2024
c7c8a14
chore(website): add bundle analyzer for website
jerensl Jul 11, 2024
6917daa
refactor(resizable-layout-website): make resizable more responsive an…
jerensl Jul 12, 2024
512cb34
refactor(resizable-layout-website): fix minor styling issue
jerensl Jul 12, 2024
31151ec
refactor(resizable-layout-website): add aria role and label
jerensl Jul 12, 2024
a76cf0e
feat(draggable-website): add state management for managing layout
jerensl Jul 18, 2024
0a603ff
fix(sidebar-playground): fix sidebar button on mobile version
jerensl Jul 18, 2024
0281914
refactor(state-playground): add state for measure percentage of resiz…
jerensl Jul 19, 2024
d558246
feat(state-local-storage): add editor size when resizable on local st…
jerensl Jul 19, 2024
97c5b94
fix(state-local-storage): add precision just 2 digit float to store i…
jerensl Jul 19, 2024
f7237e5
Merge branch 'master' into feat/stretchable-layout
devilkiller-ag Jul 27, 2024
a382171
feat(stretchable-layout): changed the min/max of resizable to 30%/70%
jerensl Aug 6, 2024
f175444
Merge branch 'feat/stretchable-layout' of github.com:jerensl/modelina…
jerensl Aug 6, 2024
5f48f45
Merge branch 'master' into feat/stretchable-layout
asyncapi-bot Aug 8, 2024
cd3d847
Merge branch 'master' into feat/stretchable-layout
jonaslagoni Sep 5, 2024
558c4bd
refactor(website): hide output options when accessing general options
jerensl Sep 14, 2024
f8f47bc
Merge branch 'feat/stretchable-layout' of github.com:jerensl/modelina…
jerensl Sep 14, 2024
4734bb0
Merge branch 'master' into feat/stretchable-layout
devilkiller-ag Sep 17, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading