mise a jours post wikithon winterschool 2024

This commit is contained in:
2024-02-02 13:42:50 +01:00
parent 47ce5c4d37
commit 7b287b57cd
46 changed files with 15305 additions and 382 deletions

View File

@@ -0,0 +1,17 @@
// rollup.config.js
// https://github.com/rollup/rollup-plugin-commonjs
import commonjs from 'rollup-plugin-commonjs';
import resolve from 'rollup-plugin-node-resolve';
export default [{
input: 'src/wikipage.js',
output: {
file: 'dist/wikpage.js',
format: 'iife',
name: 'app'
},
plugins: [
resolve(),
commonjs()
]
}];