Fix shell config imports

Signed-off-by: Francesco Torchia <francesco.torchia@suse.com>
This commit is contained in:
Francesco Torchia 2024-06-07 09:41:17 +02:00
parent 5ce303eaec
commit e388b76ce5
No known key found for this signature in database
GPG Key ID: E6D011B7415D4393
4 changed files with 6 additions and 3 deletions

3
.gitignore vendored
View File

@ -1,6 +1,9 @@
dev
lint
# rancher shell
.shell
# compiled output
/dist
/dist-pkg

View File

@ -1 +1 @@
module.exports = require('@shell/pkg/babel.config.js');
module.exports = require('@rancher/shell/pkg/babel.config');

View File

@ -5,7 +5,7 @@ import { LabeledInput } from '@components/Form/LabeledInput';
import AsyncButton from '@shell/components/AsyncButton';
import GraphCircle from '@shell/components/graph/Circle';
import { Banner } from '@components/Banner';
import AppModal from '@shell/components/AppModal.vue';
import AppModal from '@shell/components/AppModal';
import { HCI } from '../types';
export default {

View File

@ -1 +1 @@
module.exports = require('@shell/pkg/vue.config')(__dirname);
module.exports = require('@rancher/shell/pkg/vue.config')(__dirname);