import { Config } from '@stencil/core'; import { sass } from '@stencil/sass'; export const config: Config = { namespace: 'theme', plugins: [ sass({ includePaths: ['src/styles', 'src/assets'] }) ], globalStyle: 'src/styles/main.scss', outputTargets: [ { type: 'dist', esmLoaderPath: '../loader', copy: [ { src: 'assets', dest: 'assets' } ] }, { type: 'docs-readme', }, { type: 'www', serviceWorker: null, }, ], };