├── .github ├── FUNDING.yml └── workflows │ └── build_and_deploy.yml ├── .gitignore ├── .husky └── pre-commit ├── .prettierignore ├── LICENSE ├── README.md ├── babel.config.json ├── eslint.config.mjs ├── package.json ├── pnpm-lock.yaml ├── src ├── declarations.d.ts ├── index.ejs ├── microfrontend-layout.html └── vue-mf-root-config.ts ├── tsconfig.json └── webpack.config.js /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vue-microfrontends/root-config/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/build_and_deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vue-microfrontends/root-config/HEAD/.github/workflows/build_and_deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vue-microfrontends/root-config/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vue-microfrontends/root-config/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vue-microfrontends/root-config/HEAD/.prettierignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vue-microfrontends/root-config/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vue-microfrontends/root-config/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vue-microfrontends/root-config/HEAD/babel.config.json -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vue-microfrontends/root-config/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vue-microfrontends/root-config/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vue-microfrontends/root-config/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /src/declarations.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vue-microfrontends/root-config/HEAD/src/declarations.d.ts -------------------------------------------------------------------------------- /src/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vue-microfrontends/root-config/HEAD/src/index.ejs -------------------------------------------------------------------------------- /src/microfrontend-layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vue-microfrontends/root-config/HEAD/src/microfrontend-layout.html -------------------------------------------------------------------------------- /src/vue-mf-root-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vue-microfrontends/root-config/HEAD/src/vue-mf-root-config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vue-microfrontends/root-config/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vue-microfrontends/root-config/HEAD/webpack.config.js --------------------------------------------------------------------------------