mirror of
https://github.com/utopia-os/utopia-ui.git
synced 2025-12-12 15:25:59 +00:00
48 lines
1.2 KiB
TypeScript
48 lines
1.2 KiB
TypeScript
import { defineConfig } from 'vite'
|
|
import react from '@vitejs/plugin-react'
|
|
import tailwindcss from '@tailwindcss/vite'
|
|
import fs from 'fs'
|
|
import path from 'path'
|
|
import tsConfigPaths from 'vite-tsconfig-paths'
|
|
|
|
// __dirname-Ersatz für ESModules
|
|
const __dirname = path.dirname(new URL(import.meta.url).pathname)
|
|
|
|
export default defineConfig({
|
|
server: {
|
|
host: true,
|
|
port: 5174,
|
|
/**
|
|
* https: {
|
|
* key: fs.readFileSync(path.resolve(__dirname, 'localhost-key.pem')),
|
|
* cert: fs.readFileSync(path.resolve(__dirname, 'localhost-cert.pem')),
|
|
* },
|
|
*/
|
|
},
|
|
plugins: [react(), tailwindcss(), tsConfigPaths()],
|
|
build: {
|
|
sourcemap: true,
|
|
rollupOptions: {
|
|
output: {
|
|
manualChunks: (id) => {
|
|
if (id.includes('lib/src')) {
|
|
return 'utopia-ui'
|
|
}
|
|
if (id.includes('node_modules')) {
|
|
if (id.includes('react') || id.includes('scheduler') || id.includes('use-sync-external-store')) {
|
|
return 'react'
|
|
}
|
|
if (id.includes('tiptap')) {
|
|
return 'tiptap'
|
|
}
|
|
if (id.includes('leaflet')) {
|
|
return 'leaflet'
|
|
}
|
|
return 'vendor'
|
|
}
|
|
},
|
|
},
|
|
},
|
|
},
|
|
})
|