import { Config } from '@stencil/core'; // https://stenciljs.com/docs/config export const config: Config = { globalStyle: 'src/global/app.css', globalScript: 'src/global/app.ts', taskQueue: 'async', namespace: 'cobble-lane-subscriptions', buildEs5: false, outputTargets: [ { type: 'www', // comment the following line to disable service workers in production serviceWorker: null, baseUrl: 'https://myapp.local/', }, { type: 'dist', copy: [{ src: 'assets' }], }, // { // type: 'dist-custom-elements', // copy: [{ src: 'assets', dest: 'dist/assets' }], // }, ], enableCache: false, };