Skip to content

Commit

Permalink
Merge branch 'master' of github.com:reaviz/reablocks
Browse files Browse the repository at this point in the history
  • Loading branch information
SerhiiTsybulskyi committed May 29, 2024
2 parents 373a6ab + b03ad44 commit 0b26a85
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ import external from 'rollup-plugin-peer-deps-external';
import dts from 'vite-plugin-dts';
import cssInjectedByJsPlugin from 'vite-plugin-css-injected-by-js';
import { viteStaticCopy } from 'vite-plugin-static-copy';
import path from 'path';

export default defineConfig(({ mode }) =>
mode === 'library'
Expand Down Expand Up @@ -39,6 +40,11 @@ export default defineConfig(({ mode }) =>
globals: true,
environment: 'jsdom'
},
resolve: {
alias: {
'@': path.resolve(__dirname, './src'),
},
},
build: {
minify: false,
sourcemap: true,
Expand Down

0 comments on commit 0b26a85

Please sign in to comment.