stencil.config.ts 389 B

12345678910111213141516
  1. import { Config } from '@stencil/core';
  2. // https://stenciljs.com/docs/config
  3. export const config: Config = {
  4. globalStyle: 'src/global/app.css',
  5. globalScript: 'src/global/app.ts',
  6. outputTargets: [
  7. {
  8. type: 'www',
  9. // comment the following line to disable service workers in production
  10. serviceWorker: null,
  11. // baseUrl: '/dev/jxnu/202226701016'
  12. }
  13. ]
  14. };