35 lines
716 B
TypeScript
35 lines
716 B
TypeScript
|
|
import { paraglideVitePlugin } from '@inlang/paraglide-js';
|
||
|
|
import tailwindcss from '@tailwindcss/vite';
|
||
|
|
import { sveltekit } from '@sveltejs/kit/vite';
|
||
|
|
import { defineConfig } from 'vite';
|
||
|
|
|
||
|
|
export default defineConfig({
|
||
|
|
plugins: [
|
||
|
|
tailwindcss(),
|
||
|
|
sveltekit(),
|
||
|
|
paraglideVitePlugin({
|
||
|
|
project: './project.inlang',
|
||
|
|
outdir: './src/lib/paraglide',
|
||
|
|
strategy: ['url', 'cookie', 'baseLocale'],
|
||
|
|
urlPatterns: [
|
||
|
|
{
|
||
|
|
pattern: '/',
|
||
|
|
localized: [
|
||
|
|
['en', '/en'],
|
||
|
|
['de', '/de'],
|
||
|
|
['hu', '/hu']
|
||
|
|
]
|
||
|
|
},
|
||
|
|
{
|
||
|
|
pattern: '/:path(.*)?',
|
||
|
|
localized: [
|
||
|
|
['en', '/en/:path(.*)?'],
|
||
|
|
['de', '/de/:path(.*)?'],
|
||
|
|
['hu', '/hu/:path(.*)?']
|
||
|
|
]
|
||
|
|
}
|
||
|
|
]
|
||
|
|
})
|
||
|
|
]
|
||
|
|
});
|