Skip to content

Commit a2f9478

Browse files
committed
fix: use direct import for now
1 parent 2a912fb commit a2f9478

File tree

5 files changed

+3
-7
lines changed

5 files changed

+3
-7
lines changed

app/pages/about.stories.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import About from './about.vue'
22
import type { Meta, StoryObj } from '@storybook-vue/nuxt'
3-
import { pageDecorator } from '#storybook/decorators'
3+
import { pageDecorator } from '../../.storybook/decorators'
44

55
const meta = {
66
component: About,

app/pages/accessibility.stories.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import Accessibility from './accessibility.vue'
22
import type { Meta, StoryObj } from '@storybook-vue/nuxt'
3-
import { pageDecorator } from '#storybook/decorators'
3+
import { pageDecorator } from '../../.storybook/decorators'
44

55
const meta = {
66
component: Accessibility,

app/pages/privacy.stories.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import Privacy from './privacy.vue'
22
import type { Meta, StoryObj } from '@storybook-vue/nuxt'
3-
import { pageDecorator } from '#storybook/decorators'
3+
import { pageDecorator } from '../../.storybook/decorators'
44

55
const meta = {
66
component: Privacy,

nuxt.config.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -351,7 +351,6 @@ export default defineNuxtConfig({
351351
allowImportingTsExtensions: true,
352352
paths: {
353353
'#cli/*': ['../cli/src/*'],
354-
'#storybook/*': ['../.storybook/*'],
355354
},
356355
},
357356
include: ['../test/unit/app/**/*.ts'],

package.json

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,6 @@
99
"url": "https://roe.dev"
1010
},
1111
"type": "module",
12-
"imports": {
13-
"#storybook/*": "./.storybook/*"
14-
},
1512
"scripts": {
1613
"build": "nuxt build",
1714
"build:test": "NODE_ENV=test vp run build",

0 commit comments

Comments
 (0)