mirror of
https://github.com/misenhower/splatoon3.ink.git
synced 2026-03-21 17:54:13 -05:00
48 lines
1.0 KiB
JavaScript
48 lines
1.0 KiB
JavaScript
import { resolve } from 'path'
|
|
import { fileURLToPath, URL } from 'url'
|
|
|
|
import { defineConfig } from 'vite'
|
|
import vue from '@vitejs/plugin-vue'
|
|
import vueI18n from '@intlify/vite-plugin-vue-i18n'
|
|
|
|
const redirectToDist = [
|
|
'/assets/splatnet/',
|
|
'/data/',
|
|
];
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
plugins: [
|
|
vue(),
|
|
vueI18n({
|
|
include: resolve(__dirname, './src/assets/i18n/**')
|
|
}),
|
|
{
|
|
// Quick hack to redirect dynamic assets to the /dist/ directory
|
|
configureServer(server) {
|
|
server.middlewares.use((req, res, next) => {
|
|
if (redirectToDist.some(s => req.url.startsWith(s))) {
|
|
req.url = '/dist' + req.url;
|
|
}
|
|
|
|
next();
|
|
});
|
|
},
|
|
},
|
|
],
|
|
resolve: {
|
|
alias: {
|
|
'@': fileURLToPath(new URL('./src', import.meta.url))
|
|
}
|
|
},
|
|
build: {
|
|
emptyOutDir: false,
|
|
rollupOptions: {
|
|
input: {
|
|
main: resolve(__dirname, 'index.html'),
|
|
screenshots: resolve(__dirname, 'screenshots/index.html')
|
|
}
|
|
}
|
|
}
|
|
})
|