kopia lustrzana https://dev.funkwhale.audio/funkwhale/funkwhale
51 wiersze
1.2 KiB
JavaScript
51 wiersze
1.2 KiB
JavaScript
// vite.config.js
|
|
|
|
import { defineConfig } from 'vite'
|
|
import { createVuePlugin as vue } from 'vite-plugin-vue2'
|
|
|
|
import path from 'path'
|
|
|
|
const port = process.env.VUE_PORT ?? 8080
|
|
|
|
const hmr = {
|
|
port: process.env.HMR_PORT || (process.env.FUNKWHALE_PROTOCOL === 'https' ? 443 : port),
|
|
protocol: process.env.HMR_PROTOCOL || (process.env.FUNKWHALE_PROTOCOL === 'https' ? 'wss' : 'ws')
|
|
}
|
|
|
|
if (process.env.GITPOD_WORKSPACE_URL) {
|
|
hmr.host = process.env.GITPOD_WORKSPACE_URL.replace('https://', `${process.env.HMR_PORT ?? process.env.VUE_PORT ?? 4000}-`)
|
|
hmr.clientPort = 443
|
|
hmr.protocol = 'wss'
|
|
delete hmr.port
|
|
}
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
envPrefix: "VUE_",
|
|
plugins: [
|
|
vue(),
|
|
{
|
|
name: 'fix-fomantic-ui-css',
|
|
transform (src, id) {
|
|
if (id.includes('fomantic-ui-css') && id.endsWith('.min.js')) {
|
|
return `import jQuery from 'jquery';${src}`
|
|
}
|
|
}
|
|
}
|
|
],
|
|
server: { port, hmr },
|
|
resolve: {
|
|
alias: {
|
|
'@': path.resolve(__dirname, './src')
|
|
}
|
|
},
|
|
build: {
|
|
rollupOptions: {
|
|
input: {
|
|
main: path.resolve(__dirname, './index.html'),
|
|
embed: path.resolve(__dirname, './embed.html')
|
|
}
|
|
}
|
|
}
|
|
})
|