* Move theme back into this repo * Ignore theme files in prettier for now * Update theme files * Update run commands and docs
19 lines
385 B
TypeScript
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()],
|
|
};
|