Skip to content

Commit

Permalink
chore: 🤖 use node as runtime
Browse files Browse the repository at this point in the history
✅ Closes: oven-sh/bun#4145
  • Loading branch information
ianzone committed Jul 23, 2024
1 parent 5028e45 commit 9d217a5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "bunx --bun vite",
"build": "tsc && bunx --bun vite build",
"preview": "bunx --bun vite preview",
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "biome check --fix src --reporter summary",
"test": "vitest --ui",
"coverage": "vitest run --coverage",
Expand Down
2 changes: 1 addition & 1 deletion vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export default defineConfig({
plugins: [react(), biomePlugin()],
resolve: {
alias: {
src: resolve(import.meta.dir, 'src'),
src: resolve(__dirname, 'src'),
},
},
});

0 comments on commit 9d217a5

Please sign in to comment.