Unfollow tool for 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 host: "127.0.0.1", 16 port: 3000, 17 }, 18 build: { 19 target: "esnext", 20 }, 21});