Pronouns labels on Bluesky
1import { defineConfig } from 'vite';
2import solidPlugin from 'vite-plugin-solid';
3// import devtools from 'solid-devtools/vite';
4
5export default defineConfig({
6 plugins: [
7 /*
8 Uncomment the following line to enable solid-devtools.
9 For more info see https://github.com/thetarnav/solid-devtools/tree/main/packages/extension#readme
10 */
11 // devtools(),
12 solidPlugin(),
13 ],
14 server: {
15 port: 3000,
16 },
17 build: {
18 target: 'esnext',
19 },
20});