Add file extensions to vue imports

Webpack doesn't need them, but Vite does
This commit is contained in:
Ian VanSchooten 2022-09-21 23:16:23 -04:00
parent 55131bba8c
commit 5da1246c51
2 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
import MyHeader from './Header';
import MyHeader from './Header.vue';
export default {
title: 'Example/Header',

View File

@ -1,6 +1,6 @@
import { within, userEvent } from '@storybook/testing-library';
import MyPage from './Page';
import MyPage from './Page.vue';
export default {
title: 'Example/Page',