Skip to content

Instantly share code, notes, and snippets.

@captaincole
Created March 4, 2018 22:31
Show Gist options
  • Save captaincole/4f561f9a5cf170ec57e2aa94f16b126f to your computer and use it in GitHub Desktop.
Save captaincole/4f561f9a5cf170ec57e2aa94f16b126f to your computer and use it in GitHub Desktop.
const sass = require('@stencil/sass');
exports.config = {
serviceWorker: {
swSrc: 'src/sw.js'
},
globalStyle: 'src/global/app.css',
plugins: [
sass({injectGlobalPaths: [
'src/global/variables.scss'
]})
]
};
exports.devServer = {
root: 'www',
watchGlob: '**/**'
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment