next.js/examples/with-stencil/packages/test-component/stencil.config.ts
stencil.config.ts19 lines324 B
import { Config } from "@stencil/core";

export const config: Config = {
  namespace: "test-component",
  outputTargets: [
    {
      type: "dist",
      esmLoaderPath: "../loader",
    },
    {
      type: "docs-readme",
    },
    {
      type: "www",
      serviceWorker: null, // disable service workers
    },
  ],
};
Quest for Codev2.0.0
/
SIGN IN