Hi there, I've been attempting to implement Internationalization in my stencil project but unfortunately, it's not working as expected. I'm not sure what's causing the issue, and all I'm seeing is a 404 error. I followed these articles closely and none of them seemed to encounter this problem. Here are the links to the articles: Medium Article and Dev.to Article
Here's a snippet from my package.json file:
{
"name": "iii",
"version": "0.0.1",
"description": "Stencil Component Starter",
// Additional properties go here ...
}
And here's a portion of my stencil.config.json file:
import { Config } from '@stencil/core';
export const config: Config = {
namespace: 'iii',
outputTargets: [
// Output targets configuration goes here ...
],
copy: [
{
src: "**/*.i18n.*.json",
dest: "i18n"
}
]
};
`
I have tried to replicate the code exactly as shown in the articles, but still facing issues with Internationalization. Any tips, additional articles or support would be greatly appreciated. Thank you!