Hi!
I have a problem with my stencil config.
I use scss and I want to load a globaStyle to import my fonts, reset, etc…
But this global.scss is not loaded.
Here is my file :
import { Config } from '@stencil/core';
import { sass } from '@stencil/sass';
// @ts-ignore
import tailwind from 'stencil-tailwind';
export const config: Config = {
namespace: 'shop',
taskQueue: 'async',
outputTargets: [
{
type: 'dist',
esmLoaderPath: '../loader',
},
{
type: 'dist-custom-elements-bundle'
},
{
type: 'docs-readme',
},
{
type: 'www',
serviceWorker: null, // disable service workers
},
],
globalStyle: './src/global.scss',
plugins: [
sass(),
tailwind()
]
};
An idea ? 
thx a lot !