mirror of
https://github.com/supabase/supabase.git
synced 2026-06-17 21:23:59 +08:00
This PR runs `prettier` on the `examples` folder. Depends on https://github.com/supabase/supabase/pull/43849.
13 lines
213 B
TypeScript
13 lines
213 B
TypeScript
import { defineConfig } from 'vite'
|
|
import solidPlugin from 'vite-plugin-solid'
|
|
|
|
export default defineConfig({
|
|
plugins: [solidPlugin()],
|
|
server: {
|
|
port: 3000,
|
|
},
|
|
build: {
|
|
target: 'esnext',
|
|
},
|
|
})
|