Revert "update examples"

This reverts commit af3e64a06d.
This commit is contained in:
王立帮
2025-03-09 10:50:41 +08:00
parent 91e6abf805
commit f4bcc9166c
286 changed files with 10142 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
const path = require("path");
const common = require("../../../webpack.common");
const { merge } = require("webpack-merge");
module.exports = merge(common, {
resolve: {
alias: {
'@mixly/python': path.resolve(__dirname, '../python'),
'@mixly/micropython': path.resolve(__dirname, '../micropython')
}
}
});