Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
385 B
TypeScript
Raw Permalink Normal View History

import { Config } from "@stencil/core";
import { sass } from "@stencil/sass";
export const config: Config = {
enableCache: true,
buildDist: true,
outputTargets: [
{
type: "dist-custom-elements-bundle",
dir: "./dist",
},
{
type: "www",
buildDir: "./build",
},
],
plugins: [sass()],
};