update master to V7

This commit is contained in:
JFH
2021-05-09 19:29:45 +02:00
parent 41fc05672d
commit 593c415664
1000 changed files with 47537 additions and 54304 deletions

12
web-dev-server.config.mjs Normal file
View File

@@ -0,0 +1,12 @@
import {fromRollup} from '@web/dev-server-rollup';
import rollupCommonjs from '@rollup/plugin-commonjs';
const commonjs = fromRollup(rollupCommonjs);
export default {
plugins: [
commonjs({
exclude: ['src', 'dist', 'instrumented']
})
]
};