Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
brillout committed Mar 13, 2024
1 parent 65b6903 commit db14d81
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 18 deletions.
4 changes: 1 addition & 3 deletions examples/base-url/vike.config.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
import type { ConfigGlobal } from 'vike/types'

export default { prerender: true

} satisfies ConfigGlobal
export default { prerender: true } satisfies ConfigGlobal
4 changes: 1 addition & 3 deletions examples/file-structure-domain-driven/vike.config.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
import type { ConfigGlobal } from 'vike/types'

export default
{ prerender: true
} satisfies ConfigGlobal
export default { prerender: true } satisfies ConfigGlobal
2 changes: 1 addition & 1 deletion examples/i18n/vike.config.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import type { ConfigGlobal } from 'vike/types'

export default {
prerender: true
prerender: true
} satisfies ConfigGlobal
5 changes: 1 addition & 4 deletions examples/i18n/vite.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,5 @@ import react from '@vitejs/plugin-react'
import vike from 'vike/plugin'

export default {
plugins: [
react(),
vike()
]
plugins: [react(), vike()]
}
3 changes: 1 addition & 2 deletions examples/path-aliases/vike.config.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import type { ConfigGlobal } from 'vike/types'

export default {
prerender: true

prerender: true
} satisfies ConfigGlobal
6 changes: 1 addition & 5 deletions examples/path-aliases/vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,7 @@ const config: UserConfig = {
'#root': __dirname
}
},
plugins: [
react(),
vike(
)
],
plugins: [react(), vike()],
optimizeDeps: {
include: ['react-dom/client']
}
Expand Down

0 comments on commit db14d81

Please sign in to comment.