Skip to content

Commit

Permalink
fix(demo): entries
Browse files Browse the repository at this point in the history
  • Loading branch information
MM25Zamanian committed Apr 19, 2024
1 parent ffe7aaf commit 7bbea2f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions demo/vite.config.mts
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ import {defineConfig} from 'vite';
import Unfonts from 'unplugin-fonts/vite';
import tsconfigPaths from 'vite-tsconfig-paths';

const entrys = ['dialog', 'top-bar', 'button', 'lists'];
const entries = ['dialog', 'top-bar', 'button', 'lists', 'cards', 'icon-button'];
const DIST_PATH = './dist/';
const pages = entrys.reduce((result, name) => {
const pages = entries.reduce((result, name) => {
result[name] = `./${name}/index.html`;

return result;
Expand Down

0 comments on commit 7bbea2f

Please sign in to comment.