Skip to content
Merged
Changes from 2 commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
2d12889
add i18n module example to the showcase example
chakAs3 Dec 22, 2024
2c2bf78
create nuxtApp each time story vueApp is created, remove the check if…
chakAs3 Dec 22, 2024
295adc4
fix: add alias for Vue in Vite config to resolve bundler issues
chakAs3 Dec 22, 2024
fd23f72
fix start dev script
chakAs3 Dec 22, 2024
660d524
feat: add i18n support with multiple languages and example stories to…
chakAs3 Dec 22, 2024
2499c94
feat: add MyWelcome component and stories to showcase exmaples
chakAs3 Dec 22, 2024
8c38ac3
fix: update package name for nuxtjs/i18n to @nuxtjs/i18n in package.j…
chakAs3 Dec 22, 2024
0983fbe
refactor: rename I18n component to MyI18n and update references in st…
chakAs3 Dec 22, 2024
5a00ad2
style: clean up formatting and remove unnecessary whitespace in vario…
chakAs3 Dec 22, 2024
5b35771
fix: add vue as external dependencies in rollupOptions to avoid memo…
chakAs3 Dec 24, 2024
947658a
revert fix: add vue as external dependencies in rollupOptions to avo…
chakAs3 Dec 24, 2024
c739501
fix: add vue as a dependency in package.json and create a build task …
chakAs3 Dec 26, 2024
ab216db
fix: remove tasks.json
chakAs3 Dec 26, 2024
976b204
Merge branch 'chaks/fix-nuxtapp-for-rerendered-story' of https://gith…
chakAs3 Dec 26, 2024
d9c8a7c
fix: remove tasks.json as it is no longer needed
chakAs3 Dec 26, 2024
b58c7d8
Merge branch 'main' of https://github.com/nuxt-modules/storybook into…
chakAs3 Dec 27, 2024
11908e4
update lockfile
chakAs3 Dec 27, 2024
bc665ef
refactor: remove unused Vue alias and cleanup Nuxt app creation logic
chakAs3 Dec 27, 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
17 changes: 17 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"version": "2.0.0",
"tasks": [
{
"type": "shell",
"label": "build",
"command": "pnpm",
"args": [
"install"
],
"problemMatcher": [],
"presentation": {
"reveal": "silent"
}
}
]
}
Loading