mirror of
https://github.com/misenhower/splatoon3.ink.git
synced 2026-09-14 11:35:41 -05:00
Fix dynamic asset handling with Vite
This commit is contained in:
@@ -4,9 +4,28 @@ import { fileURLToPath, URL } from 'url'
|
||||
import { defineConfig } from 'vite'
|
||||
import vue from '@vitejs/plugin-vue'
|
||||
|
||||
const redirectToDist = [
|
||||
'/assets/splatnet/',
|
||||
'/data/',
|
||||
];
|
||||
|
||||
// https://vitejs.dev/config/
|
||||
export default defineConfig({
|
||||
plugins: [vue()],
|
||||
plugins: [
|
||||
vue(),
|
||||
{
|
||||
// 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))
|
||||
|
||||
Reference in New Issue
Block a user