Use SCSS and PostCSS with Rollup

This commit is contained in:
2020-01-02 14:15:37 +01:00
parent 3ed48ebcfb
commit 6b221c2172
8 changed files with 2077 additions and 78 deletions

11
babel.config.js Normal file
View File

@@ -0,0 +1,11 @@
module.exports = {
presets: [
'@babel/preset-env'
],
plugins: [
'@babel/plugin-syntax-dynamic-import',
['@babel/plugin-transform-runtime', {
'useESModules': true
}]
]
}