Skip to content

Commit

Permalink
Refactor(demo): Remove package partials from app configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
literat committed Apr 23, 2024
1 parent e8d7a91 commit cfd9448
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions apps/demo/config/vite/app.ts
Expand Up @@ -27,12 +27,7 @@ export default defineConfig({
},
plugins: [
handlebars({
partialDirectory: [
join(pathRelativeToPackageRoot, 'partials'),
join(pathRelativeToRepositoryRoot, 'packages/web/partials'),
join(pathRelativeToRepositoryRoot, 'packages/web-react/partials'),
join(pathRelativeToRepositoryRoot, 'packages/web-vue/partials'),
],
partialDirectory: [join(pathRelativeToPackageRoot, 'partials')],
helpers: {
setVar: (...data) => {
const varName = data.shift();
Expand Down

0 comments on commit cfd9448

Please sign in to comment.