mirror of
https://github.com/wukko/cobalt.git
synced 2024-11-15 12:50:01 +00:00
web/vite: exclude .md files from i18n chunks
This commit is contained in:
parent
d2b1a6553b
commit
503514d98e
1 changed files with 1 additions and 2 deletions
|
@ -43,7 +43,6 @@ const exposeLibAV: PluginOption = (() => {
|
||||||
|
|
||||||
for (const module of modules) {
|
for (const module of modules) {
|
||||||
const distFolder = join(IMPUT_MODULE_DIR, module, 'dist/');
|
const distFolder = join(IMPUT_MODULE_DIR, module, 'dist/');
|
||||||
console.log(distFolder);
|
|
||||||
await cp(distFolder, assets, { recursive: true });
|
await cp(distFolder, assets, { recursive: true });
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -72,7 +71,7 @@ export default defineConfig({
|
||||||
rollupOptions: {
|
rollupOptions: {
|
||||||
output: {
|
output: {
|
||||||
manualChunks: (id) => {
|
manualChunks: (id) => {
|
||||||
if (id.includes('/web/i18n')) {
|
if (id.includes('/web/i18n') && id.endsWith('.json')) {
|
||||||
const lang = id.split('/web/i18n/')?.[1].split('/')?.[0];
|
const lang = id.split('/web/i18n/')?.[1].split('/')?.[0];
|
||||||
if (lang) {
|
if (lang) {
|
||||||
return `i18n_${lang}`;
|
return `i18n_${lang}`;
|
||||||
|
|
Loading…
Reference in a new issue