Initial commit

This commit is contained in:
2022-01-18 19:14:48 +13:00
commit fce1aa4710
27 changed files with 11706 additions and 0 deletions

17
stencil.config.ts Normal file
View File

@@ -0,0 +1,17 @@
import { Config } from '@stencil/core';
// https://stenciljs.com/docs/config
export const config: Config = {
globalStyle: 'src/global/app.css',
globalScript: 'src/global/app.ts',
taskQueue: 'async',
outputTargets: [
{
type: 'www',
// comment the following line to disable service workers in production
serviceWorker: null,
baseUrl: 'https://myapp.local/',
},
],
};