2025-02-28 10:52:04 -05:00
import { fileURLToPath } from 'node:url'
import { dirname , resolve } from 'node:path'
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import vueJsx from '@vitejs/plugin-vue-jsx'
2025-02-28 15:15:28 -05:00
import stylelint from 'vite-plugin-stylelint'
import eslint from 'vite-plugin-eslint2'
2025-03-09 16:18:27 -04:00
import emojisPlugin from './build/emojis_plugin.js'
2025-02-28 10:52:04 -05:00
import { devSwPlugin , buildSwPlugin , swMessagesPlugin } from './build/sw_plugin.js'
2025-02-26 20:23:10 -05:00
import copyPlugin from './build/copy_plugin.js'
2025-02-28 14:03:43 -05:00
import { getCommitHash } from './build/commit_hash.js'
2025-03-09 15:06:19 -04:00
import mswPlugin from './build/msw_plugin.js'
2025-02-28 10:52:04 -05:00
2025-02-28 13:29:27 -05:00
const localConfigPath = '<projectRoot>/config/local.json'
2025-02-28 10:52:04 -05:00
const getLocalDevSettings = async ( ) => {
try {
const settings = ( await import ( './config/local.json' ) ) . default
if ( settings . target && settings . target . endsWith ( '/' ) ) {
// replacing trailing slash since it can conflict with some apis
// and that's how actual BE reports its url
settings . target = settings . target . replace ( /\/$/ , '' )
}
2025-02-28 13:29:27 -05:00
console . info ( ` Using local dev server settings ( ${ localConfigPath } ): ` )
2025-02-28 10:52:04 -05:00
console . info ( JSON . stringify ( settings , null , 2 ) )
return settings
} catch ( e ) {
2025-02-28 13:29:27 -05:00
console . info ( ` Local dev server settings not found ( ${ localConfigPath } ), using default ` , e )
2025-02-28 10:52:04 -05:00
return { }
}
}
const projectRoot = dirname ( fileURLToPath ( import . meta . url ) )
2025-02-28 13:29:27 -05:00
const getTransformSWSettings = ( settings ) => {
if ( 'transformSW' in settings ) {
return settings . transformSW
} else {
console . info (
'`transformSW` is not present in your local settings.\n' +
'This option controls whether the service worker should be bundled and transformed into iife (immediately-invoked function expression) during development.\n' +
'If set to false, the service worker will be served as-is, as an ES Module.\n' +
'Some browsers (e.g. Firefox) does not support ESM service workers.\n' +
'To avoid surprises, it is defaulted to true, but this can be slow.\n' +
'If you are using a browser that supports ESM service workers, you can set this option to false.\n' +
` No matter your choice, you can set the transformSW option in ${ localConfigPath } in to disable this message. `
)
return true
}
}
2025-02-27 22:54:23 -05:00
export default defineConfig ( async ( { mode , command } ) => {
2025-02-28 10:52:04 -05:00
const settings = await getLocalDevSettings ( )
const target = settings . target || 'http://localhost:4000/'
2025-02-28 13:29:27 -05:00
const transformSW = getTransformSWSettings ( settings )
2025-02-28 10:52:04 -05:00
const proxy = {
'/api' : {
target ,
changeOrigin : true ,
cookieDomainRewrite : 'localhost' ,
ws : true
} ,
'/nodeinfo' : {
target ,
changeOrigin : true ,
cookieDomainRewrite : 'localhost'
} ,
'/socket' : {
target ,
changeOrigin : true ,
cookieDomainRewrite : 'localhost' ,
ws : true ,
headers : {
'Origin' : target
}
} ,
'/oauth' : {
target ,
changeOrigin : true ,
cookieDomainRewrite : 'localhost'
}
}
const swSrc = 'src/sw.js'
const swDest = 'sw-pleroma.js'
2025-02-28 13:29:27 -05:00
const alias = {
src : '/src' ,
components : '/src/components' ,
... ( mode === 'test' ? { vue : 'vue/dist/vue.esm-bundler.js' } : { } )
}
2025-02-28 10:52:04 -05:00
return {
plugins : [
vue ( {
template : {
compilerOptions : {
isCustomElement ( tag ) {
if ( tag === 'pinch-zoom' ) {
return true
}
return false
}
}
}
} ) ,
vueJsx ( ) ,
2025-02-28 13:29:27 -05:00
devSwPlugin ( { swSrc , swDest , transformSW , alias } ) ,
2025-02-28 10:52:04 -05:00
buildSwPlugin ( { swSrc , swDest } ) ,
2025-02-26 20:23:10 -05:00
swMessagesPlugin ( ) ,
2025-03-09 16:18:27 -04:00
emojisPlugin ( ) ,
2025-02-26 20:23:10 -05:00
copyPlugin ( {
inUrl : '/static/ruffle' ,
inFs : resolve ( projectRoot , 'node_modules/@ruffle-rs/ruffle' )
2025-02-28 15:15:28 -05:00
} ) ,
eslint ( {
lintInWorker : true ,
lintOnStart : true ,
cacheLocation : resolve ( projectRoot , 'node_modules/.cache/eslintcache' )
} ) ,
stylelint ( {
lintInWorker : true ,
lintOnStart : true ,
cacheLocation : resolve ( projectRoot , 'node_modules/.cache/stylelintcache' )
2025-03-09 15:06:19 -04:00
} ) ,
... ( mode === 'test' ? [ mswPlugin ( ) ] : [ ] )
2025-02-28 10:52:04 -05:00
] ,
2025-02-28 16:08:36 -05:00
optimizeDeps : {
// For unknown reasons, during vitest, vite will re-optimize the following
// deps, causing the test to reload, so add them here so that it will not
// reload during tests
include : [
'custom-event-polyfill' ,
'vue-i18n' ,
'@ungap/event-target' ,
'lodash.merge' ,
'body-scroll-lock' ,
'@kazvmoe-infra/pinch-zoom-element'
]
} ,
2025-02-28 14:26:27 -05:00
css : {
devSourcemap : true
} ,
2025-02-28 10:52:04 -05:00
resolve : {
2025-02-28 13:29:27 -05:00
alias
2025-02-28 10:52:04 -05:00
} ,
define : {
'process.env' : JSON . stringify ( {
2025-02-28 14:46:34 -05:00
NODE _ENV : mode === 'test' ? 'testing' : command === 'serve' ? 'development' : 'production' ,
2025-02-28 13:29:27 -05:00
HAS _MODULE _SERVICE _WORKER : command === 'serve' && ! transformSW
2025-02-28 10:52:04 -05:00
} ) ,
2025-02-28 14:03:43 -05:00
'COMMIT_HASH' : JSON . stringify ( command === 'serve' ? 'DEV' : getCommitHash ( ) ) ,
2025-02-28 14:46:34 -05:00
'DEV_OVERRIDES' : JSON . stringify ( command === 'serve' ? settings : undefined ) ,
'__VUE_OPTIONS_API__' : true ,
'__VUE_PROD_DEVTOOLS__' : false ,
'__VUE_PROD_HYDRATION_MISMATCH_DETAILS__' : false
2025-02-28 10:52:04 -05:00
} ,
build : {
sourcemap : true ,
rollupOptions : {
input : {
main : 'index.html'
} ,
output : {
inlineDynamicImports : false ,
entryFileNames ( chunkInfo ) {
const id = chunkInfo . facadeModuleId
if ( id . endsWith ( swSrc ) ) {
return swDest
} else {
return 'static/js/[name].[hash].js'
}
} ,
2025-02-28 17:15:32 -05:00
chunkFileNames ( ) {
2025-02-28 10:52:04 -05:00
return 'static/js/[name].[hash].js'
} ,
assetFileNames ( assetInfo ) {
const name = assetInfo . names ? . [ 0 ] || ''
if ( /\.(png|jpe?g|gif|svg)(\?.*)?$/ . test ( name ) ) {
return 'static/img/[name].[hash][extname]'
} else if ( /\.css$/ . test ( name ) ) {
return 'static/css/[name].[hash][extname]'
} else {
return 'static/misc/[name].[hash][extname]'
}
}
}
} ,
} ,
server : {
2025-02-27 22:54:23 -05:00
... ( mode === 'test' ? { } : { proxy } ) ,
2025-02-28 10:52:04 -05:00
port : Number ( process . env . PORT ) || 8080
} ,
preview : {
proxy
2025-02-27 22:54:23 -05:00
} ,
test : {
globals : true ,
browser : {
enabled : true ,
provider : 'playwright' ,
instances : [
{ browser : 'firefox' }
]
}
2025-02-28 10:52:04 -05:00
}
}
} )