Zack Chase 6c7feff23d
Move theme back into this repo (#2036)
* Move theme back into this repo

* Ignore theme files in prettier for now

* Update theme files

* Update run commands and docs
2023-01-18 12:53:09 -08:00

19 lines
385 B
TypeScript

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()],
};