Skip to content

Commit

Permalink
fix(core): add server watch use polling
Browse files Browse the repository at this point in the history
Closes #3
  • Loading branch information
trueChazza committed Apr 11, 2021
1 parent 55fb7c1 commit e1f224f
Showing 1 changed file with 11 additions and 6 deletions.
17 changes: 11 additions & 6 deletions vite/vite.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,15 @@ import vue from '@vitejs/plugin-vue'
import voie from 'vite-plugin-voie'

export default defineConfig({
plugins: [
vue(),
voie({
pagesDir: '../../../../resources/js/components'
})
]
plugins: [
vue(),
voie({
pagesDir: '../../../../resources/js/components'
})
],
server: {
watch: {
usePolling: true
}
}
})

0 comments on commit e1f224f

Please sign in to comment.