Skip to content

Commit

Permalink
Add node types
Browse files Browse the repository at this point in the history
  • Loading branch information
Lexuil committed Jul 21, 2024
1 parent 1bfb5d3 commit 1732dab
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 0 deletions.
Binary file modified bun.lockb
Binary file not shown.
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
},
"devDependencies": {
"@shikijs/monaco": "^1.10.3",
"@types/node": "^20.14.11",
"@vitejs/plugin-vue": "^5.0.5",
"autoprefixer": "^10.4.19",
"eslint": "^8.57.0",
Expand Down
13 changes: 13 additions & 0 deletions vite.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import path from 'path';
import { defineConfig } from 'vite';
import vue from '@vitejs/plugin-vue';
// https://vitejs.dev/config/
export default defineConfig({
plugins: [vue()],
resolve: {
alias: {
'@': path.resolve(__dirname, "./src/")
}
},
base: '/dot-editor'
});

0 comments on commit 1732dab

Please sign in to comment.