Skip to content

Commit

Permalink
config port 3000 for all projects #55 (#56)
Browse files Browse the repository at this point in the history
  • Loading branch information
msynk authored Oct 6, 2023
1 parent a7dd53e commit d682ed7
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Svelte/vite.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,7 @@ import { svelte } from '@sveltejs/vite-plugin-svelte'
// https://vitejs.dev/config/
export default defineConfig({
plugins: [svelte()],
server: {
port: 3000,
},
})
3 changes: 3 additions & 0 deletions Vanilla/vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,7 @@ export default defineConfig({
'#': resolve(__dirname, './src/components'),
},
},
server: {
port: 3000,
},
})
3 changes: 3 additions & 0 deletions Vue/vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,7 @@ import vue from '@vitejs/plugin-vue'
// https://vitejs.dev/config/
export default defineConfig({
plugins: [vue()],
server: {
port: 3000,
},
})

0 comments on commit d682ed7

Please sign in to comment.